File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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"
You can’t perform that action at this time.
0 commit comments