damccorm commented on code in PR #29483: URL: https://github.com/apache/beam/pull/29483#discussion_r1398495277
########## contributor-docs/release-guide.md: ########## @@ -1228,6 +1228,24 @@ Ping [dev@](mailto:[email protected]) mailing list for assistance if you need Copy the source release from the `dev` repository to the `release` repository at `dist.apache.org` using Subversion. +``` +svn co https://dist.apache.org/repos/dist/dev/beam dev # Checkout the `dev` artifact repo. + +svn co https://dist.apache.org/repos/dist/release/beam release # Checkout the `release` artifact repo. + +mkdir release/$RELEASE_VERSION + +# Copy files from the `dev` artifact repo to the `release` artifact repo. + +cd release + +svn add $RELEASE_VERSION + +svn rm $OLD_RELEASE_VERSION # Delete all artifacts from old releases. + +svn commit -m "Adding artifacts for the ${RELEASE_VERSION} release and removing old artifats" Review Comment: ```suggestion svn commit -m "Adding artifacts for the ${RELEASE_VERSION} release and removing old artifacts" ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
