- Edit the
gradle.properties
file: Remove-alpha<number>
from theVERSION_NAME
and set the version to the release version. For example:1.0.0
. - Make a signed commit:
git commit -m "Release vX.Y.Z"
- Make a signed tag (check existing tags for message format):
git tag -a "vX.Y.Z" -m "vX.Y.Z"
- Push all of our work to Github to make it official:
git push --tags origin master