-
Notifications
You must be signed in to change notification settings - Fork 11
/
azure-pipelines.yml
65 lines (55 loc) · 1.33 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
trigger:
- master
pool:
vmImage: 'windows-2022'
variables:
- name: solution
value: '**/*.sln'
- name: buildPlatform
value: 'x64'
- name: buildConfiguration
value: 'Release'
- name: appxPackageDir
value: '$(System.DefaultWorkingDirectory)\AppxPackages'
steps:
- task: NuGetToolInstaller@1
- task: NuGetCommand@2
inputs:
restoreSolution: '$(solution)'
- task: DownloadSecureFile@1
name: signingCertDD0
inputs:
secureFile: 'store-DD0.pfx'
- task: DownloadSecureFile@1
name: signingCertDCF
inputs:
secureFile: 'store-DCF.pfx'
- template: build-version.yml
parameters:
pipeline: '17'
install_version: '9'
distro_version: '9'
certificate_name: 'signingCertDD0'
app_id: '9P70GX2HQNHN'
package_name: 'PengwinEnterprise9'
- template: build-version.yml
parameters:
pipeline: '12'
install_version: '8'
distro_version: '8'
certificate_name: 'signingCertDD0'
app_id: '9N2XZFWMRRQW'
package_name: 'PengwinEnterprise8'
- template: build-version.yml
parameters:
pipeline: '7'
install_version: ''
distro_version: '7'
certificate_name: 'signingCertDCF'
app_id: '9N8LP0X93VCP'
package_name: 'WLinuxEnterprise'
- task: PublishBuildArtifacts@1
inputs:
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
ArtifactName: 'drop'
publishLocation: 'Container'