From 7ffc97d301281631fdbf3a4a3020d7d899e9caf2 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Mon, 28 Jun 2021 16:40:43 -0400 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d7928b2d..ca3ba94d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -130,8 +130,11 @@ jobs: { Set-Variable -name py_arch -value "" } + Write-Output "py_arch: $py_arch" Set-Variable -name python_file -value "python-${BUILD_PYTHON_VERSION}${py_arch}.exe" + Write-Output "python_file: $python_file" Set-Variable -name python_url -value "https://www.python.org/ftp/python/$BUILD_PYTHON_VERSION/$python_file" + Write-Output "python_url: $python_url" Invoke-WebRequest -Uri $python_url -OutFile $python_file Start-Process -wait -FilePath $python_file -ArgumentList "/quiet","InstallAllUsers=1","TargetDir=c:\\python" shell: pwsh