- Change the version in the
gradle.propertiesfile to a non-SNAPSHOT verson. git commit -am "Prepare for release X.Y.Z."(where X.Y.Z is the new version)git tag -a vX.Y.X -m "Version X.Y.Z"(where X.Y.Z is the new version)- Run
git tagto verify it.
- Run
git push && git push --tags- This should be pushed to your fork.
- Create a PR with this commit and merge it.
- Confirm the new artifacts are present in https://s01.oss.sonatype.org/content/repositories/releases/com/dropbox/affectedmoduledetector/affectedmoduledetector/
- If the plugin fails to publish the release, you'll need to log into Sonatype and drop any repositories under 'Staging Repositories' and re-run the CI job to publish.
- Go to https://github.com/dropbox/AffectedModuleDetector/releases and
Draft a new releasefrom the tag you just created - Update the top level
gradle.propertiesto the next SNAPSHOT version. git commit -am "Prepare next development version."- Create a PR with this commit and merge it.