]> granicus.if.org Git - python/commitdiff
Fix publishing of Windows release (GH-15006)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 29 Jul 2019 18:41:37 +0000 (11:41 -0700)
committerGitHub <noreply@github.com>
Mon, 29 Jul 2019 18:41:37 +0000 (11:41 -0700)
(cherry picked from commit fe330fc4ad3b8218a84216a824af7d7007dcb85b)

Co-authored-by: Steve Dower <steve.dower@python.org>
.azure-pipelines/windows-release/stage-publish-nugetorg.yml
Tools/msi/uploadrelease.ps1

index 296eb28648b98e63869919132fe390ebe7c85b63..570cdb3ec57f0da082bdb6b617bcd0634b664bbc 100644 (file)
@@ -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'
index 469a96818a1ff23c016fc9a83f968160534a7313..d3673b4582983c9c7c54646638ce49aebfb89a12 100644 (file)
@@ -92,6 +92,7 @@ if (-not $skipupload) {
     & $plink -batch $user@$server chgrp downloads $d
     & $plink -batch $user@$server chmod g-x,o+rx $d
     & $pscp -batch $chm.FullName "$user@${server}:$d"
+    if (-not $?) { throw "Failed to upload $chm" }
 
     $dirs = gci "$build" -Directory
     if ($embed) {
@@ -107,6 +108,7 @@ if (-not $skipupload) {
 
         if ($exe) {
             & $pscp -batch $exe.FullName "$user@${server}:$d"
+            if (-not $?) { throw "Failed to upload $exe" }
         }
 
         if ($msi) {
@@ -115,6 +117,7 @@ if (-not $skipupload) {
             & $plink -batch $user@$server chgrp downloads $sd
             & $plink -batch $user@$server chmod g-x,o+rx $sd
             & $pscp -batch $msi.FullName "$user@${server}:$sd"
+            if (-not $?) { throw "Failed to upload $msi" }
             & $plink -batch $user@$server chgrp downloads $sd*
             & $plink -batch $user@$server chmod g-x,o+r $sd*
         }
@@ -122,6 +125,7 @@ if (-not $skipupload) {
 
     & $plink -batch $user@$server chgrp downloads $d*
     & $plink -batch $user@$server chmod g-x,o+r $d*
+    & $pscp -ls "$user@${server}:$d"
 }
 
 if (-not $skippurge) {