- Update
VERSION_NAME
ingradle.properties
to the release (non-SNAPSHOT) version. - Update
CHANGELOG.md
for the impending release. - Update the
README.md
with the new version. git commit -am "Prepare for release X.Y.Z"
(where X.Y.Z is the new version)git tag -a X.Y.Z -m "X.Y.Z"
(where X.Y.Z is the new version)- Update
VERSION_NAME
ingradle.properties
to the next SNAPSHOT version. git commit -am "Prepare next development version"
git push && git push --tags
This will trigger a GitHub Action workflow which will upload the release artifacts to Maven Central.