Commit 4763cca8 authored by Matthew Fisher's avatar Matthew Fisher

fix RELEASE_BRANCH_NAME

the release branch was of the format `release-vX.Y.Z` when it should be `release-X.Y`.
parent ad54e71a
...@@ -33,7 +33,7 @@ If you are creating a patch release, you may want to use the following instead: ...@@ -33,7 +33,7 @@ If you are creating a patch release, you may want to use the following instead:
```shell ```shell
export PREVIOUS_PATCH_RELEASE=vX.Y.Z export PREVIOUS_PATCH_RELEASE=vX.Y.Z
export RELEASE_NAME=vX.Y.Z+1 export RELEASE_NAME=vX.Y.Z+1
export RELEASE_BRANCH_NAME="release-$RELEASE_NAME" export RELEASE_BRANCH_NAME="release-X.Y"
export RELEASE_CANDIDATE_NAME="$RELEASE_NAME-rc1" export RELEASE_CANDIDATE_NAME="$RELEASE_NAME-rc1"
``` ```
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment