-
Notifications
You must be signed in to change notification settings - Fork 1
/
azure-pipelines.yml
47 lines (40 loc) · 1.02 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
trigger:
- main
pool:
vmImage: ubuntu-latest
variables:
buildConfiguration: 'Release'
major: '2'
minor: '0'
patch: '6'
version: '$(major).$(minor).$(patch)'
steps:
- task: UseDotNet@2
displayName: 'install .NET 8.x'
inputs:
version: 8.x
- task: DotNetCoreCLI@2
displayName: "restore"
inputs:
command: restore
projects: "**/*.csproj"
- task: DotNetCoreCLI@2
displayName: "build"
inputs:
command: build
projects: "**/*.csproj"
arguments: "--configuration $(BuildConfiguration)"
- task: DotNetCoreCLI@2
displayName: "pack"
inputs:
command: 'pack'
packagesToPack: '**/AstroCqrs.csproj'
versioningScheme: byEnvVar
versionEnvVar: version
- task: NuGetCommand@2
displayName: "nuget push"
inputs:
command: 'push'
packagesToPush: '$(Build.ArtifactStagingDirectory)/**/*.nupkg;!$(Build.ArtifactStagingDirectory)/**/*.symbols.nupkg'
nuGetFeedType: 'external'
publishFeedCredentials: 'NuGet'