- In the top-level gradle.properties file, update the
VERSION_NAME
property. This will usually just be removing the-SNAPSHOT
suffix. - Commit and push changes.
- Tag the release:
git tag v[VERSION_NAME]
. Make sure there is av
prefix at the front of the tag. This indicates to the CI that this is a release tag. - Push tags:
git push --tags
- Confirm that the
publish
github action is completed successfully. - Add a new GitHub release with change logs.
- Prepare the version for the next release by bumping the
VERSION_NAME
property and adding the-SNAPSHOT
suffix. - Additionally update the version names in README.md.