Skip to content

Commit 62ec668

Browse files
authored
Fix a couple of problems on the release runbook (#3222)
1 parent 0eb8af7 commit 62ec668

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

website/contributing/release-branch-cut-and-rc0.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,27 @@ Documents in this section go over steps to run different types of React Native r
2929
- Bump the Hermes version on the release branch using this command:
3030

3131
```bash
32-
# Replace <the_hermes_tag> with the tag that will look like 'hermes-2022-02-21-RNv0.68.0-rc1-0172d30ac14e8c936c4fd2c435b799e0009aeb00'
33-
./scripts/bump-hermes-version.js -t <the_hermes_tag>
32+
# Replace <the_hermes_tag> with the tag that will look like 'hermes-2022-07-20-RNv0.70.0-bc97c5399e0789c0a323f8e1431986e207a9e8ba'
33+
./scripts/hermes/bump-hermes-version.js -t <the_hermes_tag>
3434
```
3535

36-
### 2. Test the current changes
36+
- Add and commit the extra file that got created at `sdks/hermes/.hermesversion`.
3737

38-
Before continuing further, follow the [testing guide](/contributing/release-testing) to ensure the code doesn't have any major issues.
38+
### 2. Push the branch and test the current changes
3939

40-
### 3. Kick off the build of 0.{minor}.0-rc.0
40+
You can now push the branch you created so that others can also start testing:
4141

4242
```bash
4343
git push origin 0.69-stable
44+
```
45+
46+
Before continuing further, follow the [testing guide](/contributing/release-testing) to ensure the code doesn't have any major issues.
4447

48+
### 3. Kick off the build of 0.{minor}.0-rc.0
49+
50+
Once you're done with the testing, you can kick-off the bump and publishing of RC0:
51+
52+
```
4553
# This will walk you through what version you are releasing
4654
./scripts/bump-oss-version.js --to-version 0.69.0-rc.0 --token <YOUR_CIRCLE_CI_TOKEN>
4755
```

0 commit comments

Comments
 (0)