From e1de36b47c112fd7bde51f228be699fd706118dc Mon Sep 17 00:00:00 2001 From: Greg Turnquist Date: Tue, 30 Jul 2019 10:34:41 -0500 Subject: [PATCH] Move all release details into a side document. --- README.adoc | 19 ------------------- RELEASE.adoc | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+), 19 deletions(-) create mode 100644 RELEASE.adoc diff --git a/README.adoc b/README.adoc index 2a601c6..96f03f4 100644 --- a/README.adoc +++ b/README.adoc @@ -21,22 +21,3 @@ We have separate folders for each of these: NOTE: The master branch tracks Spring HATEOAS 1.0, based upon Spring Boot 2 + Spring Framework 5. To see examples depicted against the 0.x branch (Spring 4.x) visit the https://github.com/spring-projects/spring-hateoas-examples/tree/0.x[0.x branch]. -=== Making a release - -1. Create a new release (on the main branch). -+ ----- -% ci/create-release.sh ----- -+ -2. With the release tagged, push the tagged version to the release branch. -+ ----- -% git checkout -b release -% git reset --hard -% git push -f origin release ----- - -NOTE: You can chain the previous set of commands together using `&&`. - -The pipeline will build and release the "release" branch. It will also build a new a new snapshot and stage it on artifactory. diff --git a/RELEASE.adoc b/RELEASE.adoc new file mode 100644 index 0000000..db76aca --- /dev/null +++ b/RELEASE.adoc @@ -0,0 +1,19 @@ +=== Making a release + +1. Create a new release (on the main branch). ++ +---- +% ci/create-release.sh +---- ++ +2. With the release tagged, push the tagged version to the release branch. ++ +---- +% git checkout -b release +% git reset --hard +% git push -f origin release +---- + +NOTE: You can chain the previous set of commands together using `&&`. + +The pipeline will build and release the "release" branch. It will also build a new a new snapshot and stage it on artifactory.