diff options
author | Steve Dower <steve.dower@python.org> | 2019-12-05 15:32:04 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-05 15:32:04 -0800 |
commit | 44ea525ca56ad8ef783cbcd3a0636a425e5d801a (patch) | |
tree | db7eeb3af1bd7fdf688a02846522b282a8a4306c /.azure-pipelines/windows-release | |
parent | Remove unused variable in Python/pylifecycle.c (GH-17475) (diff) | |
download | cpython-44ea525ca56ad8ef783cbcd3a0636a425e5d801a.tar.gz cpython-44ea525ca56ad8ef783cbcd3a0636a425e5d801a.tar.bz2 cpython-44ea525ca56ad8ef783cbcd3a0636a425e5d801a.zip |
Fix unquoted YAML in Windows release build (GH-17479)
Diffstat (limited to '.azure-pipelines/windows-release')
-rw-r--r-- | .azure-pipelines/windows-release/stage-publish-nugetorg.yml | 2 | ||||
-rw-r--r-- | .azure-pipelines/windows-release/stage-publish-pythonorg.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.azure-pipelines/windows-release/stage-publish-nugetorg.yml b/.azure-pipelines/windows-release/stage-publish-nugetorg.yml index 5aba048cd72..b78bd493a0f 100644 --- a/.azure-pipelines/windows-release/stage-publish-nugetorg.yml +++ b/.azure-pipelines/windows-release/stage-publish-nugetorg.yml @@ -31,7 +31,7 @@ jobs: buildVersionToDownload: specific buildId: $(BuildToPublish) - - powershell: gci pythonarm*.nupkg | %{ Write-Host "Not publishing: $($_.Name)"; gi $_ } | del + - powershell: 'gci pythonarm*.nupkg | %{ Write-Host "Not publishing: $($_.Name)"; gi $_ } | del' displayName: 'Prevent publishing ARM/ARM64 packages' workingDirectory: '$(Build.BinariesDirectory)\nuget' condition: and(succeeded(), not(variables['PublishArmPackages'])) diff --git a/.azure-pipelines/windows-release/stage-publish-pythonorg.yml b/.azure-pipelines/windows-release/stage-publish-pythonorg.yml index 6c61e9ac3bd..8c95f1b950c 100644 --- a/.azure-pipelines/windows-release/stage-publish-pythonorg.yml +++ b/.azure-pipelines/windows-release/stage-publish-pythonorg.yml @@ -39,7 +39,7 @@ jobs: artifactName: embed downloadPath: $(Build.BinariesDirectory) - - powershell: gci *embed-arm*.zip | %{ Write-Host "Not publishing: $($_.Name)"; gi $_ } | del + - 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'])) |