You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: RELEASE.md
+9-12Lines changed: 9 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ The release process during release week should look like this:
25
25
- Merge `beta` into `main`
26
26
- Do an `alpha` release
27
27
28
-
###Merge any outstanding `Prepare Alpha Release` branches
28
+
###Merge any outstanding `Prepare Alpha Release` branches
29
29
30
30
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.
31
31
@@ -48,7 +48,7 @@ You can use [this saved search](https://github.com/ember-cli/ember-app-blueprint
- 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
98
98
- create a new branch to merge `beta` into `main` e.g. `git checkout --no-track -b merge-beta origin/main`
99
99
- merge beta into this new branch e.g. `git merge origin/beta --no-ff`
100
100
-**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
105
104
- manually update the version in package.json to be the next alpha.
106
105
- 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
109
106
- commit this change to the version in package.json: `git commit -am "update to the next alpha version"`
0 commit comments