Skip to content

Commit

Permalink
fix spaces in signed files
Browse files Browse the repository at this point in the history
  • Loading branch information
Qix- committed Apr 11, 2024
1 parent d951171 commit 401a536
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ jobs:
- name: Sign Windows binary
shell: bash
run: |
find release -name "*.msi" -type f | xargs -n1 python3 /sign-with-evcodesignd.py
find release -name "*.msi" -type f -print0 | xargs -0 -n1 -I{} python3 /sign-with-evcodesignd.py "{}"
env:
EVCODESIGND_PSK: ${{ secrets.EVCODESIGND_PSK }}
- name: Upload signed artifacts
Expand Down

0 comments on commit 401a536

Please sign in to comment.