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
@@ -104,11 +104,11 @@ Present your analysis to the user with:
104
104
105
105
1. Save the current mainHash from `apps/desktop/package.json` for later comparison.
106
106
2. Verify working tree is clean before bump:
107
-
```bash
107
+
```sh
108
108
git status --short
109
109
```
110
110
3. Change directory to `apps/desktop/` and run the bump:
111
-
```bash
111
+
```sh
112
112
cd apps/desktop && pnpm bump
113
113
```
114
114
4. This command will:
@@ -126,17 +126,17 @@ Present your analysis to the user with:
126
126
If Step 4 decided mainHash should NOT be updated, restore the old value now. The bump has already committed, pushed, and created the PR on a new release branch, so we amend the commit and force push. This is safe because the release branch was just created.
127
127
128
128
1. Change back to the repo root first (Step 5 left the working directory at `apps/desktop/`):
129
-
```bash
129
+
```sh
130
130
cd ../..
131
131
```
132
132
2. Ensure you are on the `release/desktop/{NEW_VERSION}` branch (bump should have switched to it).
133
133
3. Replace the recalculated mainHash with the saved old value in `apps/desktop/package.json`.
0 commit comments