-
Notifications
You must be signed in to change notification settings - Fork 3
/
azure-pipelines.yml
80 lines (70 loc) · 2.27 KB
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# ASP.NET
# Build and test ASP.NET projects.
# Add steps that publish symbols, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/aspnet/build-aspnet-4
trigger:
branches:
include:
- v2/feature/*
- v2/hotfix/*
- v2/release/*
tags:
include:
- v*
variables:
- group: 'vendr'
- name: 'vmImageName'
value: 'vs2017-win2016'
- name: 'nuGetOrgServiceCreds'
value: 'NuGet.org (Vendr)'
- name: 'packageName'
value: 'Vendr.PaymentProviders.Worldpay'
stages:
- stage: build
displayName: Build
dependsOn: [ ]
pool:
vmImage: $(vmImageName)
jobs:
- job: build
displayName: 'Build'
dependsOn: [ ]
steps:
- task: CmdLine@2
inputs:
script: './build.cmd Pack'
- task: PublishBuildArtifacts@1
inputs:
pathToPublish: './artifacts'
artifactName: artifacts
- stage: deploy
displayName: Deploy
condition: succeeded()
dependsOn: [ build ]
jobs:
- deployment: deploy
displayName: Deploy
environment: 'development'
pool:
vmImage: $(vmImageName)
strategy:
runOnce:
deploy:
steps:
# Unstable Deploy
- task: NuGetCommand@2
displayName: 'Deploy to unstable feed'
inputs:
command: 'push'
packagesToPush: '$(Pipeline.Workspace)/artifacts/**/*.nupkg;!$(Pipeline.Workspace)/artifacts/**/*.snupkg'
nuGetFeedType: 'internal'
publishVstsFeed: '576196d3-9f20-4a86-8fd6-b0d7428fe5ee/cfadaa44-aa4e-45d7-8303-91a38d020c50'
# Realease Deploy
- task: NuGetCommand@2
displayName: 'Deploy to NuGet.org'
condition: and(succeeded(), startsWith(variables['build.sourceBranch'], 'refs/tags/v'))
inputs:
command: push
nuGetFeedType: external
packagesToPush: '$(Pipeline.Workspace)/artifacts/**/*.nupkg;!$(Pipeline.Workspace)/artifacts/**/*.snupkg'
publishFeedCredentials: '$(nuGetOrgServiceCreds)'