Versions Compared

Key

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

...

Code Block
languagebash
themeRDark
titleExport VarsPublish key (committer)
svn co https://dist.apache.org/repos/dist/release/ozone
cd ozone
export CODESIGNINGKEY=your_gpg_key_id
gpg --list-sigs $CODESIGNINGKEY >> KEYS
gpg --armor --export $CODESIGNINGKEY >> KEYS
svn commit -m "ozone: adding key of XXXX to the KEYS"

...

Code Block
languagebash
themeRDark
titleExport VarsPublish key (PMC)
#use latest KEYS as the base
svn rm https://dist.apache.org/repos/dist/dev/ozone/KEYS
svn cp https://dist.apache.org/repos/dist/release/ozone/KEYS  https://dist.apache.org/repos/dist/dev/ozone/KEYS

svn co https://dist.apache.org/repos/dist/dev/ozone
cd ozone
export CODESIGNINGKEY=your_gpg_key_id
gpg --list-sigs $CODESIGNINGKEY >> KEYS
gpg --armor --export $CODESIGNINGKEY >> KEYS
svn commit -m "ozone: adding key of XXXX to the KEYS"

...

Go https://repository.apache.org/#stagingRepositories and close the newly created orgapacheozone repository.


Push the release candidate tag to github

Code Block
languagebash
themeRDark
titlePush the tag
git push origin "ozone-${VERSION}-${RC}"

...

Include the following links:

  1. Release notes: https://ozone.apache.org/release/1.2.0/.  Replace the version in the URL with the version being released.
  2. Download link: https://ozone.apache.org/downloads/
  3. Link to versioned documentation: https://ozone.apache.org/docs/

...