release-instructions.md
659 字节
Releasing
- In the top-level gradle.properties file, update the
VERSION_NAMEproperty. This will usually just be removing the-SNAPSHOTsuffix. - Commit and push changes.
- Tag the release:
git tag v[VERSION_NAME]. Make sure there is avprefix at the front of the tag. This indicates to the CI that this is a release tag. - Push tags:
git push --tags - Confirm that the
publishgithub action is completed successfully. - Add a new GitHub release with change logs.
- Prepare the version for the next release by bumping the
VERSION_NAMEproperty and adding the-SNAPSHOTsuffix. - Additionally update the version names in README.md.