Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 847 Bytes

RELEASE.md

File metadata and controls

38 lines (28 loc) · 847 Bytes

Release

Setup

$ brew install node@20
$ make install

Develop

$ make format
$ make lint
$ make test

Publish

$ vi package.json
$ vi package-lock.json
$ make build
$ git add .
$ git commit -m 'Bump version 1.0.13 -> 1.1.0'
$ git tag -a v1.1.0 -m 'version 1.1.0'
$ git push --follow-tags
$ git tag -fa v1 -m "Update v1 tag"
$ git push origin v1 --force

Go to GitHub Releases and create a new release

References

See Versioning to understand version strategy.

See Publishing actions in GitHub Marketplace for general information about how to make actions available on GitHub.