-
Notifications
You must be signed in to change notification settings - Fork 4
/
azure-pipelines.yml
88 lines (69 loc) · 2.06 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
# ASP.NET Core (.NET Framework)
# Build and test ASP.NET Core projects targeting the full .NET Framework.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core
trigger:
tags:
include:
- release/*
pool:
vmImage: 'windows-latest'
variables:
project: 'LeaderPivot/LeaderPivot.csproj'
solution: '**/*.sln'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'
steps:
# nbgv need a deep clone
- checkout: self
fetchDepth: 0
# install nbgv tooling
- task: DotNetCoreCLI@2
displayName: Install NBGV tool
inputs:
command: custom
custom: tool
arguments: install --tool-path . nbgv
# allow nbgv to set the version
- script: nbgv cloud
displayName: Set Version
- task: UseDotNet@2
displayName: 'Use dotnet 6'
inputs:
version: '6.x'
- task: NuGetToolInstaller@1
- task: NuGetCommand@2
inputs:
restoreSolution: '$(solution)'
vstsFeed: 'LeaderAnalyticsFeed'
- task: DotNetCoreCLI@2
displayName: 'dotnet build'
inputs:
command: 'build'
arguments: '--configuration $(buildConfiguration)'
projects: $(project)
- task: DotNetCoreCLI@2
displayName: 'dotnet pack'
inputs:
command: 'custom'
custom: 'pack'
arguments: '$(project) /p:PublicRelease=true --no-build --include-symbols --include-source -c=Release -o $(build.artifactstagingdirectory)'
- task: AzureKeyVault@1
name: KeyVaultSecrets
displayName: Get Nuget API key from Key Vault
inputs:
azureSubscription: 'All Azure Services'
KeyVaultName: 'LeaderAnalyticsVault'
SecretsFilter: 'nuget-apikey'
- task: PowerShell@2
displayName: "Push package to nuget.org"
inputs:
targetType: 'inline'
script: 'nuget push $(Build.ArtifactStagingDirectory)\*.nupkg -ApiKey $(nuget-apikey) -Source https://api.nuget.org/v3/index.json'
- task: NuGetCommand@2
displayName: 'Push package to leaderanalytics feed'
inputs:
command: 'push'
feedsToUse: 'select'
vstsFeed: 'LeaderAnalyticsFeed'
publishVstsFeed: 'LeaderAnalyticsFeed'