-
Notifications
You must be signed in to change notification settings - Fork 4
/
azure-pipelines.yml
61 lines (51 loc) · 1.43 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
trigger:
- master
- rel/*
pr:
- master
- rel/*
pool:
vmImage: vs2017-win2016
variables:
BuildConfiguration: Release
steps:
- task: DotNetCoreInstaller@0
inputs:
version: '3.0.100-preview-009754'
- task: DotNetCoreCLI@2
inputs:
command: custom
custom: tool
arguments: install --tool-path . nbgv
displayName: Install NBGV tool
- script: nbgv cloud
displayName: Set Version
- task: DotNetCoreCLI@2
inputs:
command: build
projects: '**/*.csproj'
arguments: -c $(BuildConfiguration)
displayName: Build
- task: DotNetCoreCLI@2
inputs:
command: pack
packagesToPack: 'SingleInstanceHelper/*.csproj'
configuration: $(BuildConfiguration)
packDirectory: $(Build.ArtifactStagingDirectory)\Artifacts
verbosityPack: Minimal
displayName: Pack
- task: PowerShell@2
displayName: Authenticode Sign artifacts
inputs:
filePath: Scripts/Sign-Package.ps1
env:
SignClientUser: $(SignClientUser)
SignClientSecret: $(SignClientSecret)
ArtifactDirectory: $(Build.ArtifactStagingDirectory)\Artifacts
condition: and(succeeded(), not(eq(variables['build.reason'], 'PullRequest')), not(eq(variables['SignClientSecret'], '')), not(eq(variables['SignClientUser'], '')))
- task: PublishBuildArtifacts@1
displayName: Publish Build Artifacts
inputs:
pathToPublish: $(Build.ArtifactStagingDirectory)\Artifacts
artifactType: container
artifactName: Artifacts