summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@python.org>2020-02-11 17:32:52 (GMT)
committerGitHub <noreply@github.com>2020-02-11 17:32:52 (GMT)
commitb138dd296a206e92ebec09b540bb88a1539563e4 (patch)
tree733c7c80f42c210df9a2fb20b0eb046a16c54e65
parentf3fda374685dffa31ebda9e681e00ef7032b8a1d (diff)
downloadcpython-b138dd296a206e92ebec09b540bb88a1539563e4.zip
cpython-b138dd296a206e92ebec09b540bb88a1539563e4.tar.gz
cpython-b138dd296a206e92ebec09b540bb88a1539563e4.tar.bz2
Fix ordering issue in Windows release upload script (GH-18465)
Automerge-Triggered-By: @zooba
-rw-r--r--.azure-pipelines/windows-release/stage-publish-pythonorg.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.azure-pipelines/windows-release/stage-publish-pythonorg.yml b/.azure-pipelines/windows-release/stage-publish-pythonorg.yml
index 8c95f1b..0474d40 100644
--- a/.azure-pipelines/windows-release/stage-publish-pythonorg.yml
+++ b/.azure-pipelines/windows-release/stage-publish-pythonorg.yml
@@ -39,11 +39,6 @@ jobs:
artifactName: embed
downloadPath: $(Build.BinariesDirectory)
- - powershell: 'gci *embed-arm*.zip | %{ Write-Host "Not publishing: $($_.Name)"; gi $_ } | del'
- displayName: 'Prevent publishing ARM/ARM64 packages'
- workingDirectory: '$(Build.BinariesDirectory)\embed'
- condition: and(succeeded(), not(variables['PublishArmPackages']))
-
- task: DownloadPipelineArtifact@1
displayName: 'Download artifact from $(BuildToPublish): Doc'
condition: and(succeeded(), variables['BuildToPublish'])
@@ -80,6 +75,11 @@ jobs:
buildVersionToDownload: specific
buildId: $(BuildToPublish)
+ - powershell: 'gci *embed-arm*.zip | %{ Write-Host "Not publishing: $($_.Name)"; gi $_ } | del'
+ displayName: 'Prevent publishing ARM/ARM64 packages'
+ workingDirectory: '$(Build.BinariesDirectory)\embed'
+ condition: and(succeeded(), not(variables['PublishArmPackages']))
+
- template: ./gpg-sign.yml
parameters: