Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3e36315

Browse files
committed
debuging
1 parent a4ad64e commit 3e36315

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/github_workflows_build-2026_01.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,11 @@ jobs:
253253
shell: pwsh
254254
run: |
255255
$destfile = "publish_output\WinPython$env:WINPYARCH-$env:WINPYVER.zip"
256-
if ($env.WINPYZIP -eq '1') { Compress-Archive -Path "$env:build_location" -DestinationPath $destfile }
256+
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+
}
257261
258262
$destfile7z = "publish_output\WinPython$env:WINPYARCH-$env:WINPYVER.7z"
259263
if ($env.WINPY7Z -eq '1') { 7z a $destfile7z $env:build_location }

0 commit comments

Comments
 (0)