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
.releaserc.with-commit.json was byte-identical to .releaserc.json, and
both docs described a mode switch via a .releaserc.no-commit.json that
never existed. Mode switching is now documented as adding/removing the
@semantic-release/git plugin block.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: docs/RELEASE_WORKFLOW.md
+9-23Lines changed: 9 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Release Workflow
2
2
3
-
This project uses semantic-release in **with-commit mode** to handle releases: the active `.releaserc.json` includes `@semantic-release/git`, so version bumps and CHANGELOG updates are committed back to `main` automatically. (`.releaserc.with-commit.json` is a historical copy of the same mode; the no-commit description this document previously carried no longer matches the configuration.)
3
+
This project uses semantic-release in **with-commit mode** to handle releases: `.releaserc.json` includes `@semantic-release/git`, so version bumps and CHANGELOG updates are committed back to `main` automatically.
4
4
5
5
## How It Works
6
6
@@ -106,25 +106,12 @@ This will:
106
106
- Show what files would be included
107
107
- Not create any release or tag
108
108
109
-
## Switching to With-Commit Mode
109
+
## Switching to No-Commit Mode
110
110
111
-
If you later want semantic-release to automatically update versions:
0 commit comments