Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
RC_NUM="1"
TAG="release-${RELEASE_VERSION}-rc${RC_NUM}"

Now, create a candidate branch:

Code Block
languagebash
RELEASE_VERSION=$RELEASE_VERSION RELEASE_CANDIDATE=$RC_NUM tools/releasing/create_release_branch.sh

Tag Tag and push the release commit:

Code Block
git tag -s ${TAG} -m "${TAG}"
git push <remote> refs/tags/release-${RELEASE_VERSION}

We now need to do several things:

...