Skip to content

Commit

Permalink
ci(release): also release chore (#436)
Browse files Browse the repository at this point in the history
  • Loading branch information
jodelamo authored Feb 4, 2024
1 parent 5603686 commit a0c00c0
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .releaserc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
module.exports = {
branches: ["main"],
plugins: [
[
"@semantic-release/commit-analyzer",
{
preset: "conventionalcommits",
releaseRules: [{ type: "chore", release: "patch" }],
},
],
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
message:
"chore(release): ${nextRelease.version}\n\n${nextRelease.notes}",
},
],
"@semantic-release/release-notes-generator",
],
}

0 comments on commit a0c00c0

Please sign in to comment.