diff options
author | Steve Dower <steve.dower@python.org> | 2019-07-29 11:22:27 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-29 11:22:27 -0700 |
commit | fe330fc4ad3b8218a84216a824af7d7007dcb85b (patch) | |
tree | 2ebdf7386a1c62ba66ab216ba2505b195a5cda0e /.azure-pipelines | |
parent | 44212ec8111febfe5fc6c6ed231d4ef2d98bd7e2 (diff) | |
download | cpython-git-fe330fc4ad3b8218a84216a824af7d7007dcb85b.tar.gz |
Fix publishing of Windows release (GH-15006)
Diffstat (limited to '.azure-pipelines')
-rw-r--r-- | .azure-pipelines/windows-release/stage-publish-nugetorg.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.azure-pipelines/windows-release/stage-publish-nugetorg.yml b/.azure-pipelines/windows-release/stage-publish-nugetorg.yml index 296eb28648..570cdb3ec5 100644 --- a/.azure-pipelines/windows-release/stage-publish-nugetorg.yml +++ b/.azure-pipelines/windows-release/stage-publish-nugetorg.yml @@ -36,6 +36,6 @@ jobs: condition: and(succeeded(), eq(variables['SigningCertificate'], variables['__RealSigningCertificate'])) inputs: command: push - packagesToPush: $(Build.BinariesDirectory)\nuget\*.nupkg' + packagesToPush: '$(Build.BinariesDirectory)\nuget\*.nupkg' nuGetFeedType: external publishFeedCredentials: 'Python on Nuget' |