-
Update the
VERSION_NAME
ingradle.properties
to the release version (e.g. remove-SNAPSHOT
from it). -
Commit and push to main
$ git commit -am "Bump version to X.Y.Z" $ git push
This will trigger a GitHub Action workflow that will publish the artifacts to Maven Central, and publish them.
-
Go to Releases and you'll see a draft release with all the PRs listed in the changelog.
- Make sure the release name and the tags associated to it match. If not, you make them match.
- Publish the draft of the release.
-
Update the
VERSION_NAME
ingradle.properties
to the next SNAPSHOT version by adding-SNAPSHOT
to the version. -
Commit and push to main
$ git commit -am "Bump version to X.Y.Z-SNAPSHOT" $ git push
-
You're done! 🎉