File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -28,18 +28,19 @@ The next step is to create tags to trigger release workflow, **however**
2828we start by using release candidate tags (` X.Y.Z-rcN ` ) before tagging the
2929final release (` X.Y.Z ` ).
3030
31- 1 . Create release candidate tag and push. Increment ` N ` for each rc.
31+ 1 . Create release candidate tag and push. The first RC uses ` N=0 ` . Increment
32+ ` N ` for each RC.
3233 ```
33- git tag X.Y.0-rcN upstream/release/X.Y && git push upstream --tags
34+ git tag X.Y.0-rcN upstream/release/X.Y && git push upstream tag X.Y.0-rcN
3435 ```
35362 . Announce the RC release: see [ Announcing Releases]
36373 . Wait a week for feedback.
3738 * Follow [ Patch release with cherry picks] to pull bug fixes into the
3839 release branch.
3940 * Repeat the RC tagging step, incrementing ` N ` .
40414 . Finally, tag the final release tag:
41- ```
42- git tag X.Y.0 upstream/release/X.Y && git push upstream --tags
42+ ``` shell
43+ git tag X.Y.0 upstream/release/X.Y && git push upstream tag X.Y.0
4344 ```
4445
4546Release automation will create a GitHub release and BCR pull request.
You can’t perform that action at this time.
0 commit comments