Skip to content
This repository has been archived by the owner on Aug 14, 2023. It is now read-only.

Commit

Permalink
Fix zipping step
Browse files Browse the repository at this point in the history
  • Loading branch information
neysofu committed Nov 1, 2021
1 parent 055502a commit 82462fc
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,10 +197,9 @@ jobs:
- name: Zip artifact files
run: |
set -e
tar -czf bins-Linux-release/ svm-linux-v${{ env.VERSION }}.zip
tar -czf bins-Windows-release/ svm-windows-v${{ env.VERSION }}.zip
tar -czf bins-macOS-release/ svm-macos-v${{ env.VERSION }}.zip
tar -czf bins-macOS-release/ svm-macos-v${{ env.VERSION }}.zip
zip -r svm-linux-v${{ env.VERSION }} bins-Linux-release/*
zip -r svm-windows-v${{ env.VERSION }} bins-Windows-release/*
zip -r svm-macos-v${{ env.VERSION }} bins-macOS-release/*
cp svm_codec.wasm/svm_codec.wasm svm_codec_v${{ env.VERSION }}.wasm
- uses: softprops/action-gh-release@v1
with:
Expand Down

0 comments on commit 82462fc

Please sign in to comment.