Skip to content

Commit 7af249d

Browse files
authored
Update RELEASE.md after doing a release
1 parent 8261be6 commit 7af249d

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

RELEASE.md

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The release process during release week should look like this:
2525
- Merge `beta` into `main`
2626
- Do an `alpha` release
2727

28-
### Merge any outstanding `Prepare Alpha Release` branches
28+
### Merge any outstanding `Prepare Alpha Release` branches
2929

3030
This makes sure that you are starting from a "clean slate" before doing any other releases. This will make each of the following steps easier to follow.
3131

@@ -48,7 +48,7 @@ You can use [this saved search](https://github.com/ember-cli/ember-app-blueprint
4848
- Update blueprint dependencies to latest
4949

5050
```
51-
pnpm dlx update-blueprint-deps --ember-source=latest
51+
pnpm dlx update-blueprint-deps --filter ember-source --tag latest files/package.json
5252
```
5353

5454
- commit this update `git commit -am "update blueprint dependencies to latest"`
@@ -78,7 +78,7 @@ You can use [this saved search](https://github.com/ember-cli/ember-app-blueprint
7878
- Update blueprint dependencies to beta
7979

8080
```
81-
node ./dev/update-blueprint-dependencies.js --ember-source=beta
81+
pnpm dlx update-blueprint-deps --filter ember-source --tag beta files/package.json
8282
```
8383

8484
- commit this update `git commit -am "update blueprint dependencies to beta"`
@@ -98,20 +98,17 @@ You can use [this saved search](https://github.com/ember-cli/ember-app-blueprint
9898
- create a new branch to merge `beta` into `main` e.g. `git checkout --no-track -b merge-beta origin/main`
9999
- merge beta into this new branch e.g. `git merge origin/beta --no-ff`
100100
- **make sure to not update the .release-plan file** this should only ever be changed by the release-plan github scripts
101-
- make sure to not update the `release-plan` config section to the `package.json`, `packages/addon-blueprint/package.json`, or `packages/app-blueprint/package.json`, during this step.
102-
- **make sure to not update any .github/workflows/plan-release.yml file** this should still plan a beta release
103-
- **make sure to not update any .github/workflows/publish.yml file** this should still publish a beta release
104-
- **make sure to not update the CHANGELOG.md file** in this step.
101+
- make sure to not update the `release-plan` config section to the `package.json` during this step.
102+
- **make sure to not update any .github/workflows/plan-alpha-release.yml file** this should still plan an alpha release
103+
- **make sure to not update any .github/workflows/publish-alpha.yml file** this should still publish an alpha release
105104
- manually update the version in package.json to be the next alpha.
106105
- e.g. if the current alpha is `"version": "6.6.0-alpha.3",` update it to be `"version": "6.7.0-alpha.0",`
107-
- manually update the alpha version in `packages/addon-blueprint/package.json` to be the same alpha
108-
- manually update the alpha version in `packages/app-blueprint/package.json` to be the same alpha
109106
- commit this change to the version in package.json: `git commit -am "update to the next alpha version"`
110107
- Update blueprint dependencies to alpha
111108

112-
```
113-
node ./dev/update-blueprint-dependencies.js --ember-source=alpha --ember-data=canary
114-
```
109+
```
110+
pnpm dlx update-blueprint-deps --filter ember-source --tag alpha files/package.json
111+
```
115112

116113
- commit this update `git commit -am "update blueprint dependencies to alpha"`
117114
- push and open a PR targeting `main` with a PR title like `Prepare 6.6-alpha`

0 commit comments

Comments
 (0)