Skip to content

Commit

Permalink
fix(docs): Update release doc with env var assignment. (#7170)
Browse files Browse the repository at this point in the history
  • Loading branch information
zijianjoy authored Jan 25, 2022
1 parent 15fac0b commit 6fac617
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ if you only want to use or contribute to this repo.
```bash
git checkout $COMMIT_SHA
git checkout -b release-$MINOR_VERSION
BRANCH=release-$MINOR_VERSION
git checkout -b $BRANCH
git push upstream HEAD
```
Expand All @@ -127,7 +128,7 @@ Do the following things before a release:
NOTE: if there are merge conflicts for a PR, ask the PR author or area OWNER
to create a cherry pick PR by themselves following other two options.
- `git push upstream release-$VERSION` directly to the release branch.
- `git push upstream $BRANCH` directly to the release branch.
There's an automated script that can help you do the above:

Expand Down Expand Up @@ -183,7 +184,7 @@ Note, when releasing from master, all the below mentions of "release branch" mea
- `1.0.1`
- `1.1.0`
- ...
Contact @Bobgy if you are not sure what next version should be.
Set the version by using `VERSION=<version-value>`. Contact @Bobgy if you are not sure what next version should be.

1. Update all version refs in release branch by

Expand Down

0 comments on commit 6fac617

Please sign in to comment.