Skip to content

Commit 376fa1a

Browse files
committed
should be
1 parent b113ded commit 376fa1a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/github_workflows_build-all.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -378,22 +378,22 @@ jobs:
378378
}
379379
380380
- name: Zip the result
381-
if: env.ARTIFACT_NAME != '' && ${{ matrix.flavor_config.ZIP == '1' }}
381+
if: env.ARTIFACT_NAME != '' && env.WINPYZIP == '1'
382382
shell: pwsh
383383
run: |
384384
$destfile = "publish_output\WinPython$env:WINPYARCH-$env:WINPYVER.zip"
385385
Compress-Archive -Path "$env:build_location" -DestinationPath $destfile
386386
387387
- name: 7z archive the result
388-
if: env.ARTIFACT_NAME != '' && ${{ matrix.flavor_config.SEVEN_Z == '1' }}
388+
if: env.ARTIFACT_NAME != '' && env.WINPY7Z == '1'
389389
shell: pwsh
390390
run: |
391391
$destfile7z = "publish_output\WinPython$env:WINPYARCH-$env:WINPYVER.7z"
392392
$sourceDir = "$env:build_location"
393393
7z a $destfile7z $sourceDir
394394
395395
- name: 7z executable archive the result
396-
if: env.ARTIFACT_NAME != '' && ${{ matrix.flavor_config.EXE == '1' }}
396+
if: env.ARTIFACT_NAME != '' && env.WINPYEXE == '1'
397397
shell: pwsh
398398
run: |
399399
$destfile7z = "publish_output\WinPython$env:WINPYARCH-$env:WINPYVER.exe"

0 commit comments

Comments
 (0)