Skip to content

Commit 44ea525

Browse files
authored
Fix unquoted YAML in Windows release build (GH-17479)
1 parent 4da4400 commit 44ea525

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
buildVersionToDownload: specific
3232
buildId: $(BuildToPublish)
3333

34-
- powershell: gci pythonarm*.nupkg | %{ Write-Host "Not publishing: $($_.Name)"; gi $_ } | del
34+
- powershell: 'gci pythonarm*.nupkg | %{ Write-Host "Not publishing: $($_.Name)"; gi $_ } | del'
3535
displayName: 'Prevent publishing ARM/ARM64 packages'
3636
workingDirectory: '$(Build.BinariesDirectory)\nuget'
3737
condition: and(succeeded(), not(variables['PublishArmPackages']))

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
artifactName: embed
4040
downloadPath: $(Build.BinariesDirectory)
4141

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

0 commit comments

Comments
 (0)