From 21ec996da3c5c16614fdd8acbed1dc023574f431 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Robaczy=C5=84ski?= Date: Fri, 20 Nov 2020 09:36:47 +0100 Subject: [PATCH] Add how to release instructions --- HOW_TO_RELEASE.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 HOW_TO_RELEASE.md diff --git a/HOW_TO_RELEASE.md b/HOW_TO_RELEASE.md new file mode 100644 index 0000000..93d7774 --- /dev/null +++ b/HOW_TO_RELEASE.md @@ -0,0 +1,11 @@ +How to release +======== + + 1. Change the version in `plugin/build.gradle` to a non-SNAPSHOT verson. + 2. `git commit -am "Prepare X.Y.Z version"` (where X.Y.Z is the new version) + 3. `./gradlew clean publish`. + 4. `git tag X.Y.Z"` (where X.Y.Z is the new version) + 5. Change the version in `plugin/build.gradle` to next SNAPSHOT verson. + 6. `git commit -am "Prepare next iteration"` + 7. `git push origin master --tags` + 8. Promote new release on [releases page](https://github.com/brainly/onesky-gradle-plugin/releases)