This project uses GitHub Actions to automatically build and release the application.
- Update Version: Bump the version in
package.json(e.g.,1.0.0->1.0.1). - Commit: Commit the change.
git commit -am "chore: bump version to 1.0.1" - Tag: Create a new tag starting with
v.git tag v1.0.1
- Push: Push the commit and the tag to GitHub.
git push && git push --tags
- GitHub Actions will detect the new tag.
- It will build the project (
npm run build). - It will zip the
dist/folder. - It will create a new Release in the GitHub repository.
- The zipped assets will be attached to the release for download.