-
Notifications
You must be signed in to change notification settings - Fork 1
/
azure-pipelines.yml
108 lines (94 loc) · 3.82 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# 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.Dibs'
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 NuGet 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)'
# Release Umbraco package Deploy
- task: UseDotNet@2
displayName: 'Use .NET Core 3.x'
condition: and(succeeded(), startsWith(variables['build.sourceBranch'], 'refs/tags/v'))
inputs:
version: 3.x
- powershell: |
# get the umbraco package file (assumes there is just one zip file package)
$f = (Get-ChildItem -Path "$(Pipeline.Workspace)\artifacts\packages\*" -File -Include $(packageName).*.zip | Select-Object -First 1).FullName
# assign the filename to a variable
echo "$f"
echo "##vso[task.setvariable variable=umbracoPackageFile]$f"
displayName: 'Get Umbraco Package path'
condition: and(succeeded(), startsWith(variables['build.sourceBranch'], 'refs/tags/v'))
- script: |
dotnet tool install --global Umbraco.Tools.Packages
displayName: 'Install UmbPack'
condition: and(succeeded(), startsWith(variables['build.sourceBranch'], 'refs/tags/v'))
- script: |
umbpack push $(umbracoPackageFile) -k %OUR_UMBRACO_API_KEY% -w v817 -c false -a $(packageName).*.zip
displayName: 'Deploy to Our Umbraco'
condition: and(succeeded(), startsWith(variables['build.sourceBranch'], 'refs/tags/v'))
env:
OUR_UMBRACO_API_KEY: $(our-umbraco-api-key)