blob: e0512b95f27da822e30076943007bbfcd27dff6e [file] [log] [blame]
Steve Dower21a92f82019-06-14 08:29:20 -07001jobs:
2- job: Publish_Store
3 displayName: Publish Store packages
4 condition: and(succeeded(), eq(variables['DoMSIX'], 'true'))
5
6 pool:
Steve Dower03153dd2020-02-29 00:21:46 +00007 vmImage: windows-2019
Steve Dower21a92f82019-06-14 08:29:20 -07008
9 workspace:
10 clean: all
11
12 steps:
13 - checkout: none
14
15 - task: DownloadBuildArtifacts@0
16 displayName: 'Download artifact: msixupload'
Steve Dower994a3b82019-07-13 11:46:16 +020017 condition: and(succeeded(), not(variables['BuildToPublish']))
Steve Dower21a92f82019-06-14 08:29:20 -070018 inputs:
19 artifactName: msixupload
20 downloadPath: $(Build.BinariesDirectory)
21
Steve Dower994a3b82019-07-13 11:46:16 +020022 - task: DownloadBuildArtifacts@0
23 displayName: 'Download artifact: msixupload'
24 condition: and(succeeded(), variables['BuildToPublish'])
25 inputs:
26 artifactName: msixupload
27 downloadPath: $(Build.BinariesDirectory)
28 buildType: specific
29 project: cpython
30 pipeline: Windows-Release
31 buildVersionToDownload: specific
32 buildId: $(BuildToPublish)
33
34 # TODO: eq(variables['SigningCertificate'], variables['__RealSigningCertificate'])
Steve Dower21a92f82019-06-14 08:29:20 -070035 # If we are not real-signed, DO NOT PUBLISH