Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 517430d commit 9aecbc9Copy full SHA for 9aecbc9
.github/workflows/github_workflows_build-2026_01.yml
@@ -253,8 +253,9 @@ jobs:
253
shell: pwsh
254
run: |
255
$destfile = "publish_output\WinPython$env:WINPYARCH-$env:WINPYVER.zip"
256
- Write-Output $env.WINPYZIP
257
- if ( $env.WINPYZIP -eq '1') {
+ $WINPYZIP="$env.WINPYZIP"
+ Write-Output "$WINPYZIP $destfile"
258
+ if ( $WINPYZIP -eq '1') {
259
Write-Output "WINPYZIPing"
260
Compress-Archive -Path "$env:build_location" -DestinationPath $destfile
261
}
0 commit comments