Skip to content

Commit

Permalink
Adding instructions for PMC finalization (#29483)
Browse files Browse the repository at this point in the history
* Adding instructions for PMC finalization

* Update contributor-docs/release-guide.md

Co-authored-by: Danny McCormick <[email protected]>

---------

Co-authored-by: Danny McCormick <[email protected]>
  • Loading branch information
chamikaramj and damccorm authored Nov 20, 2023
1 parent c8a6d45 commit b7acf57
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions contributor-docs/release-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 artifacts"
```
Make sure the last release's artifacts have been copied from `dist.apache.org` to `archive.apache.org`.
This should happen automatically: [dev@ thread](https://lists.apache.org/thread.html/39c26c57c5125a7ca06c3c9315b4917b86cd0e4567b7174f4bc4d63b%40%3Cdev.beam.apache.org%3E) with context.
Expand Down

0 comments on commit b7acf57

Please sign in to comment.