Skip to content

Commit

Permalink
fix(repo): only git commit on npm publish success
Browse files Browse the repository at this point in the history
  • Loading branch information
jwulf committed Apr 5, 2024
1 parent 333ba8f commit 9012764
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,19 @@
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/npm",
{}
],
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/git"
]
}

0 comments on commit 9012764

Please sign in to comment.