Versions Compared

Key

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

...

This will sign the tag with the gpg key matching the git mailing address. Make sure that the email given by git config user.name email matches the email for the key you want to use shown by gpg --list-secret-keys .

...

Code Block
languagebash
themeRDark
titleAdd final release tag
git checkout "ozone-${VERIONVERSION}-RC${RC}"

git tag -s "ozone-${VERIONVERSION}" -m "Ozone $VERSION release"

git push origin "ozone-${VERIONVERSION}"

Update the master branch

...