Skip to content

Commit

Permalink
.github: use ps archive command
Browse files Browse the repository at this point in the history
Since the `zip` utility is not available in the used build container,
updating to use the available `Compress-Archive` cmdlet.

Signed-off-by: James Knight <[email protected]>
  • Loading branch information
jdknight committed Feb 18, 2024
1 parent 261540e commit bbfd0c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Create archive
run: |
cd output/staging
zip -r capsblock-portable.zip .
Compress-Archive -Path * -Destination capsblock-portable.zip
- name: Generate hashes
run: |
Expand Down

0 comments on commit bbfd0c4

Please sign in to comment.