chore: update build workflow to create GitHub releases and modify publish settings

This commit is contained in:
2026-04-17 18:55:35 +10:00
parent 8e8b5a732c
commit 42f21c274f
18 changed files with 68 additions and 671 deletions

10
build-and-publish.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
# Set GitHub token for publishing
export GH_TOKEN="ghtoken"
# Run the build and publish
npm run build
# Exit with the build's exit code
exit $?