Skip to content

Commit b138dd2

Browse files
authored
Fix ordering issue in Windows release upload script (GH-18465)
Automerge-Triggered-By: @zooba
1 parent f3fda37 commit b138dd2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.azure-pipelines/windows-release/stage-publish-pythonorg.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,6 @@ jobs:
3939
artifactName: embed
4040
downloadPath: $(Build.BinariesDirectory)
4141

42-
- powershell: 'gci *embed-arm*.zip | %{ Write-Host "Not publishing: $($_.Name)"; gi $_ } | del'
43-
displayName: 'Prevent publishing ARM/ARM64 packages'
44-
workingDirectory: '$(Build.BinariesDirectory)\embed'
45-
condition: and(succeeded(), not(variables['PublishArmPackages']))
46-
4742
- task: DownloadPipelineArtifact@1
4843
displayName: 'Download artifact from $(BuildToPublish): Doc'
4944
condition: and(succeeded(), variables['BuildToPublish'])
@@ -80,6 +75,11 @@ jobs:
8075
buildVersionToDownload: specific
8176
buildId: $(BuildToPublish)
8277

78+
- powershell: 'gci *embed-arm*.zip | %{ Write-Host "Not publishing: $($_.Name)"; gi $_ } | del'
79+
displayName: 'Prevent publishing ARM/ARM64 packages'
80+
workingDirectory: '$(Build.BinariesDirectory)\embed'
81+
condition: and(succeeded(), not(variables['PublishArmPackages']))
82+
8383

8484
- template: ./gpg-sign.yml
8585
parameters:

0 commit comments

Comments
 (0)