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

Skip to content

Commit 13d0cd6

Browse files
authored
Merge pull request #1932 from stonebig/master
simplify, now that bug is squashed
2 parents 6b77c31 + 6a80c8b commit 13d0cd6

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

.github/workflows/github_workflows_build-2026_01.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -253,12 +253,7 @@ jobs:
253253
shell: pwsh
254254
run: |
255255
$destfile = "publish_output\WinPython$env:WINPYARCH-$env:WINPYVER.zip"
256-
$WINPYZIP="$env:WINPYZIP"
257-
Write-Output "$WINPYZIP $destfile"
258-
if ( $WINPYZIP -eq '1') {
259-
Write-Output "WINPYZIPing"
260-
Compress-Archive -Path "$env:build_location" -DestinationPath $destfile
261-
}
256+
if ( $env:WINPYZIP -eq '1') { Compress-Archive -Path "$env:build_location" -DestinationPath $destfile}
262257
263258
$destfile7z = "publish_output\WinPython$env:WINPYARCH-$env:WINPYVER.7z"
264259
if ( $env:WINPY7Z -eq '1') { 7z a $destfile7z $env:build_location }

0 commit comments

Comments
 (0)