-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
63 lines (52 loc) · 1.62 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
# 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:
- release/*
pool:
vmImage: 'windows-latest'
variables:
project: '**/LeaderAnalytics.AdaptiveClient.Utilities.csproj'
solution: '**/*.sln'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'
major: 3
minor: 0
patch: $[counter('aaa', 0)] #increment the name and set the seed to zero when major or minor change
NugetVersion: $(major).$(minor).$(patch)
steps:
- task: NuGetToolInstaller@1
- task: UseDotNet@2
displayName: 'Use dotnet 6'
inputs:
version: '6.x'
- 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: 'pack'
arguments: '--configuration $(buildConfiguration)'
packagesToPack: $(project)
versioningScheme: 'byEnvVar'
versionEnvVar: 'NugetVersion'
- task: NuGetCommand@2
inputs:
command: 'push'
feedsToUse: 'select'
vstsFeed: 'LeaderAnalyticsFeed'
publishVstsFeed: 'LeaderAnalyticsFeed'
- task: PowerShell@2
displayName: "Push package to nuget.org"
inputs:
targetType: 'inline'
script: 'nuget push $(Build.ArtifactStagingDirectory)\*.nupkg -ApiKey $(nuget.org_apikey) -Source https://api.nuget.org/v3/index.json'