-
Notifications
You must be signed in to change notification settings - Fork 5
/
azure-pipelines.yml
51 lines (44 loc) · 1.61 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
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
trigger:
- master
pool:
vmImage: 'ubuntu-latest'
# these variables are available throughout the build file
# just the build configuration is defined, in this case we are building Release packages
variables:
- group: nuget-publish
- name: buildConfiguration
value: 'Release'
steps:
# The first task is the dotnet command build, pointing to our csproj file
- task: DotNetCoreCLI@2
displayName: 'dotnet build'
inputs:
command: 'build'
arguments: '--configuration $(buildConfiguration)'
projects: 'src/Collections/Postman.NET.Collections.csproj'
# The second task is dotnet pack command again pointing to the csproj file
# The nobuild means the project will not be compiled before running pack, because its already built in above step
- task: DotNetCoreCLI@2
displayName: "dotnet pack"
inputs:
command: 'pack'
arguments: '--configuration $(buildConfiguration)'
packagesToPack: 'src/Collections/Postman.NET.Collections.csproj'
nobuild: true
versioningScheme: 'off'
# Push a project
- script: dotnet nuget push $(Build.ArtifactStagingDirectory)/**/*.nupkg -s https://api.nuget.org/v3/index.json -k $(apiKey)
# - task: NuGetCommand@2
# displayName: "nuget push"
# inputs:
# command: 'push'
# feedsToUse: 'select'
# allowPackageConflicts: true
# packagesToPush: '$(Build.ArtifactStagingDirectory)/**/*.nupkg'
# nuGetFeedType: 'internal'
# publishVstsFeed: 'Test'
# versioningScheme: 'off'