From 52c086dbc5c3a1960527e3a67ce461c3a2669677 Mon Sep 17 00:00:00 2001 From: "Doroszlai, Attila" <6454655+adoroszlai@users.noreply.github.com> Date: Fri, 15 Nov 2024 18:07:33 +0100 Subject: [PATCH] HDDS-11709. Simplify post-vote svn instructions (#103) --- .../04-project/02-release-guide.md | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/docs/08-developer-guide/04-project/02-release-guide.md b/docs/08-developer-guide/04-project/02-release-guide.md index 74dda09fd..9d796859b 100644 --- a/docs/08-developer-guide/04-project/02-release-guide.md +++ b/docs/08-developer-guide/04-project/02-release-guide.md @@ -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.