Skip to content

Latest commit

 

History

History
15 lines (14 loc) · 479 Bytes

02-prepare-release-commit.md

File metadata and controls

15 lines (14 loc) · 479 Bytes

Prepare Release Commit

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