Skip to content

Commit 517430d

Browse files
committed
test
1 parent 3e36315 commit 517430d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/github_workflows_build-2026_01.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -253,18 +253,18 @@ jobs:
253253
shell: pwsh
254254
run: |
255255
$destfile = "publish_output\WinPython$env:WINPYARCH-$env:WINPYVER.zip"
256-
Write-Output "env.WINPYZIP: $env.WINPYZIP and destfile: $destfile"
257-
if ($env.WINPYZIP -eq '1') {
256+
Write-Output $env.WINPYZIP
257+
if ( $env.WINPYZIP -eq '1') {
258258
Write-Output "WINPYZIPing"
259259
Compress-Archive -Path "$env:build_location" -DestinationPath $destfile
260260
}
261261
262262
$destfile7z = "publish_output\WinPython$env:WINPYARCH-$env:WINPYVER.7z"
263-
if ($env.WINPY7Z -eq '1') { 7z a $destfile7z $env:build_location }
263+
if ( $env.WINPY7Z -eq '1') { 7z a $destfile7z $env:build_location }
264264
265265
$destfileexe = "publish_output\WinPython$env:WINPYARCH-$env:WINPYVER.exe"
266266
$SFXModulePath = "C:\Program Files\7-Zip\7z.sfx"
267-
if ($env.WINPYEXE -eq '1') { 7z a -t7z -sfx"$SFXModulePath" $destfileexe $env:build_location }
267+
if ( $env.WINPYEXE -eq '1') { 7z a -t7z -sfx"$SFXModulePath" $destfileexe $env:build_location }
268268
269269
- name: generate hashes wppm style
270270
if: env.WINPYREQUIREMENTS != ''

0 commit comments

Comments
 (0)