Skip to content

Commit 4f076ee

Browse files
committed
docs
1 parent 02daa87 commit 4f076ee

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/Releases.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ Nx Release is configured in `nx.json`. It is currently configured to:
2020

2121
The documentation for Nx Release can be found here: https://nx.dev/features/manage-releases
2222

23-
To ensure Nx Release is correctly configured, we have a script, [`.ado/scripts/prepublish-check.mjs`](//microsoft/react-native-macos/blob/main/.ado/scripts/prepublish-check.mjs), running on CI. This script can also be run locally when creating a new stable branch.
23+
To ensure Nx Release is correctly configured, we have a script, [`.ado/scripts/prepublish-check.mjs`](/microsoft/react-native-macos/blob/main/.ado/scripts/prepublish-check.mjs), running on CI. This script can also be run locally when creating a new stable branch.
2424

2525
In addition to `nx.json`, we also have `nx.test.json`. This configuration is only used for integration tests. Because we need to ensure that all the bits in this repository work, we cannot consume already published packages and must always publish all packages from this repository. As of writing, we have two pipelines consuming this configuration:
2626

27-
- [Verify react-native-macos in a new project](//microsoft/react-native-macos/blob/0.76-stable/.ado/jobs/test-react-native-macos-init.yml)
28-
- [react-native-test-app](//microsoft/react-native-macos/blob/0.76-stable/.ado/jobs/react-native-test-app-integration.yml)
27+
- [Verify react-native-macos in a new project](/microsoft/react-native-macos/blob/0.76-stable/.ado/jobs/test-react-native-macos-init.yml)
28+
- [react-native-test-app](/microsoft/react-native-macos/blob/0.76-stable/.ado/jobs/react-native-test-app-integration.yml)
2929

3030
## Creating a new stable branch (release candidate)
3131

@@ -62,7 +62,7 @@ yarn nx release --dry-run
6262
> - The version string should include the `rc` prerelease identifier (e.g., `0.77.0-rc.0`)
6363
> - Make sure GitHub release change logs only include relevant entries
6464
65-
When you have verified that everything looks good, commit the changes and push the branch to GitHub:
65+
When you have verified that everything looks good, commit the changes and push the branch:
6666

6767
```sh
6868
git add .nx/version-plans nx.json
@@ -105,10 +105,10 @@ yarn nx release --dry-run
105105
> - The version string should **NOT** include the `rc` prerelease identifier (e.g., `0.77.0`)
106106
> - Make sure GitHub release change logs only include relevant entries
107107
108-
When you have verified that everything looks good, push the changes to GitHub:
108+
When you have verified that everything looks good, push the changes:
109109

110110
```sh
111-
git add .nx/version-plans nx.json
111+
git add .ado/templates/npm-publish.yml .nx/version-plans nx.json
112112
git commit -m 'Mark 0.77 as stable'
113113
git push
114114
```
@@ -135,7 +135,7 @@ yarn nx release --dry-run
135135
> - Some test packages will also be bumped, but we can ignore them
136136
> - Make sure GitHub release change logs only include relevant entries
137137
138-
When you have verified that everything looks good, push the changes to GitHub:
138+
When you have verified that everything looks good, push the changes:
139139

140140
```sh
141141
git add .nx/version-plans

0 commit comments

Comments
 (0)