Skip to content

Commit d60ea23

Browse files
fix: remove git plugin from semantic-release to resolve branch protection conflicts (#22)
The @semantic-release/git plugin was trying to push version bumps directly to main, which conflicts with branch protection rules. Removing it allows releases to proceed while still creating GitHub releases and publishing to npm.
1 parent bacf2cc commit d60ea23

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

.releaserc.json

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,6 @@
2222
}
2323
],
2424
"@semantic-release/npm",
25-
"@semantic-release/github",
26-
[
27-
"@semantic-release/git",
28-
{
29-
"assets": ["package.json"],
30-
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
31-
}
32-
]
25+
"@semantic-release/github"
3326
]
3427
}

0 commit comments

Comments
 (0)