Skip to content

Commit

Permalink
fix: ensure zip is installed
Browse files Browse the repository at this point in the history
  • Loading branch information
ndom91 committed Dec 12, 2024
1 parent 6091702 commit 740d397
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,10 @@ jobs:
env:
EVCODESIGND_PSK: ${{ secrets.EVCODESIGND_PSK }}
- name: Compress signed msi
run: find release -name "*.msi" -type f -print0 | zip "release/$(find release -name "*.msi" -type f -printf '%P\n').zip" -@
shell: bash
run: |
sudo apt install -y zip
find release -name "*.msi" -type f -print0 | zip "release/$(find release -name "*.msi" -type f -printf '%P\n').zip" -@
- name: Upload signed artifacts
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 740d397

Please sign in to comment.