- Change the
VERSION_NAME
in rootgradle.properties
to a non-SNAPSHOT version to be released. git commit -am "chore(release): bump version to X.Y.Z."
(where X.Y.Z is the new version)git push origin main
to allow CI to build and publish the artifactsgit tag -a X.Y.Z -m "Version X.Y.Z"
(where X.Y.Z is the new version)- Update the root
gradle.properties
to the next SNAPSHOT version. git commit -am "chore(release): start next development iteration"
git push && git push --tags