You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ib...@apache.org on 2020/06/03 01:04:11 UTC

[beam] branch master updated: [BEAM-10168] Add Github 'publish release' to release guide

This is an automated email from the ASF dual-hosted git repository.

ibzib pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new d8b9d27  [BEAM-10168] Add Github 'publish release' to release guide
     new f31ac46  Merge pull request #11902 from ibzib/BEAM-10168
d8b9d27 is described below

commit d8b9d273d614b92557353c76e0a9268960c8b6cc
Author: Kyle Weaver <kc...@google.com>
AuthorDate: Tue Jun 2 19:59:00 2020 -0400

    [BEAM-10168] Add Github 'publish release' to release guide
---
 website/www/site/content/en/contribute/release-guide.md | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/website/www/site/content/en/contribute/release-guide.md b/website/www/site/content/en/contribute/release-guide.md
index 441a216..2fae2ba 100644
--- a/website/www/site/content/en/contribute/release-guide.md
+++ b/website/www/site/content/en/contribute/release-guide.md
@@ -1149,7 +1149,14 @@ Create and push a new signed tag for the released version by copying the tag for
 
     VERSION_TAG="v${RELEASE}"
     git tag -s "$VERSION_TAG" "$RC_TAG"
-    git push github "$VERSION_TAG"
+    git push upstream "$VERSION_TAG"
+
+After the tag is uploaded, publish the release in the Github UI.
+1. Navigate to `https://github.com/apache/beam/releases/tag/$VERSION_TAG`.
+1. Click the "Edit tag" button.
+1. Give the release a title, such as `Beam 2.21.0`.
+1. For the release description, copy the current version's changes from `CHANGES.md`. (You may want to touch up the formatting a bit.)
+1. Click the "Publish release" button.
 
 ### Merge website pull request