You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. Change the version in the `gradle.properties` file to a non-SNAPSHOT verson.
5
+
2.`git commit -am "Prepare for release X.Y.Z."` (where X.Y.Z is the new version)
6
+
3.`git tag -a X.Y.X -m "Version X.Y.Z"` (where X.Y.Z is the new version)
7
+
* Run `git tag` to verify it.
8
+
4.`git push && git push --tags`
9
+
* This should be pushed to your fork.
10
+
5. Create a PR with this commit and merge it.
11
+
6. Confirm the new artifacts are present in https://repo1.maven.org/maven2/com/dropbox/affectedmoduledetector/affectedmoduledetector/
12
+
* 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.
13
+
7. Go to https://github.com/dropbox/AffectedModuleDetector/releases and `Draft a new release` from the tag you just created
14
+
7. Update the top level `gradle.properties` to the next SNAPSHOT version.
15
+
8.`git commit -am "Prepare next development version."`
0 commit comments