Skip to content

Commit

Permalink
HDDS-11709. Simplify post-vote svn instructions (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
adoroszlai authored Nov 15, 2024
1 parent f499551 commit 52c086d
Showing 1 changed file with 4 additions and 15 deletions.
19 changes: 4 additions & 15 deletions docs/08-developer-guide/04-project/02-release-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -382,23 +382,12 @@ Once voting is finished, send an email summarizing the results (binding +1s, non
### Publish the Artifacts
You should commit the artifacts to the SVN repository. If you are not a PMC member you can commit it to the dev zone first and ask a PMC for the final move.
Checkout the svn folder and commit the artifacts to a new directory.
```bash
svn checkout https://dist.apache.org/repos/dist/dev/ozone
cd ozone
svn mkdir "$VERSION"
cp "$RELEASE_DIR"/* "$VERSION"/
svn add "$VERSION"/*
svn commit -m "Added ozone-$VERSION directory"
```
PMC members can move it to the final location:
If you are a PMC member, move artifacts in Subversion to the final location, otherwise ask the PMC to do the same:
```bash
svn mv -m "Move ozone-$VERSION to release" https://dist.apache.org/repos/dist/dev/ozone/"$VERSION" https://dist.apache.org/repos/dist/release/ozone/"$VERSION"
svn mv -m "Release ozone-$VERSION-rc$RC as ozone-$VERSION" \
https://dist.apache.org/repos/dist/dev/ozone/"$VERSION-rc$RC" \
https://dist.apache.org/repos/dist/release/ozone/"$VERSION"
```
To publish the artifacts to [Maven Central](https://central.sonatype.com), login to https://repository.apache.org/#stagingRepositories, select your **staging** repository and **release** it.
Expand Down

0 comments on commit 52c086d

Please sign in to comment.