3_releases

1

Tag a new dev release

Run the Make target to create a dev tag (examples):

Makefile
make release_tag_dev
2

Tag a new bug fix release

Run:

Makefile
make release_tag_bug_fix
3

Tag a new minor release

Run:

Makefile
make release_tag_minor_release
4

Push the tag to GitHub

Push tags that were created locally:

bash
git push origin $(git tag)
5

Draft a new GitHub release

Draft a new release at the following URL using the tag you created (for example v0.1.12-dev3):

https://github.com/buildwithgrove/path/releases/new

Was this helpful?