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 a4ad64e commit 3e36315Copy full SHA for 3e36315
.github/workflows/github_workflows_build-2026_01.yml
@@ -253,7 +253,11 @@ jobs:
253
shell: pwsh
254
run: |
255
$destfile = "publish_output\WinPython$env:WINPYARCH-$env:WINPYVER.zip"
256
- if ($env.WINPYZIP -eq '1') { Compress-Archive -Path "$env:build_location" -DestinationPath $destfile }
+ Write-Output "env.WINPYZIP: $env.WINPYZIP and destfile: $destfile"
257
+ if ($env.WINPYZIP -eq '1') {
258
+ Write-Output "WINPYZIPing"
259
+ Compress-Archive -Path "$env:build_location" -DestinationPath $destfile
260
+ }
261
262
$destfile7z = "publish_output\WinPython$env:WINPYARCH-$env:WINPYVER.7z"
263
if ($env.WINPY7Z -eq '1') { 7z a $destfile7z $env:build_location }
0 commit comments