Skip to content

Commit

Permalink
feat: update Windows build step to use PowerShell for zipping
Browse files Browse the repository at this point in the history
  • Loading branch information
kaorlol committed Dec 23, 2024
1 parent 07b5603 commit 590a6b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
if: runner.os == 'Windows'
run: |
mkdir -p release
zip -r "release/lunar-stitch-${{ env.VERSION }}-windows.zip" target/release/lunar-stitch.exe
powershell -Command "Compress-Archive -Path target/release/lunar-stitch.exe -DestinationPath release/lunar-stitch-${{ env.VERSION }}-windows.zip"
- name: Release
uses: softprops/action-gh-release@v2
Expand Down

0 comments on commit 590a6b9

Please sign in to comment.