Skip to content

Commit

Permalink
Fix release creation.
Browse files Browse the repository at this point in the history
  • Loading branch information
shoestringresearch committed Nov 7, 2023
1 parent 74dcc65 commit f1e8b00
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,7 @@ jobs:
# Package
- name: Create release with tarball
run: |
tar -czf ./sqlite-wasm.tgz -C ./sqlite/ext/wasm/jswasm .
gh release create --generate-notes --notes "${{inputs.source_url}}\n${{inputs.em_version}}" ./sqlite-wasm-tgz
tar -C sqlite/ext/wasm/jswasm -czf - . > ./jswasm.tgz
echo "SQLite ${{inputs.source_url}}" >> NOTES
echo "EMSDK ${{inputs.em_version}}" >> NOTES
TAG="refs/tags/`date`" gh release create $TAG --generate-notes --notes-file NOTES ./jswasm.tgz

0 comments on commit f1e8b00

Please sign in to comment.