Versions Compared

Key

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

...

Code Block
git checkout master
git pull
git push origin master:${RC_VERSION}-RC
git push origin master:DEV

Tag the release candidate branch

Code Block
git tag -a "<artifact-id>-${RC_VERSION}-RC-1" -m "<artifact-id>-${RC_VERSION}-RC-1"
git push origin --tags

Update online resources

If any online resources have been modified or added to during the release, these must be updated.

...