Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cka-y committed Jul 30, 2023
1 parent bee5167 commit f0cba8b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/package_installers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,13 @@ jobs:
- name: Zip installers
if: github.event_name == 'prerelease' || github.event_name == 'release'
shell: bash
run: |
zip -r "Installers.${{ matrix.os }}.zip" app/pkg/build/jpackage/*
if [[ "${{ matrix.os }}" == "windows-latest" ]]; then
powershell Compress-Archive -Path app/pkg/build/jpackage/* -DestinationPath Installers.${{ matrix.os }}.zip
else
zip -r Installers.${{ matrix.os }}.zip app/pkg/build/jpackage/*
fi
- name: Upload zipped installers
if: github.event_name == 'prerelease' || github.event_name == 'release'
Expand Down

0 comments on commit f0cba8b

Please sign in to comment.