Skip to content

Commit

Permalink
fix(workflows): Change release configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
ankurdotb committed Jun 1, 2022
1 parent 6f53bf2 commit fa742af
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
"ci": true,
"preset": "conventionalcommits",
"plugins": [
"@semantic-release/npm",
"@semantic-release/changelog",
"@semantic-release/github",
[ "@semantic-release/commit-analyzer",
{
"parserOpts": "./.github/linters/.commitlint.rules.js",
Expand All @@ -34,11 +31,18 @@
"presetConfig": true
}
],
[ "@semantic-release/changelog",
{
"changelogTitle": "# Changelog"
}
],
[ "@semantic-release/git",
{
"assets": ["package.json", "CHANGELOG.md"],
"assets": [ "package.json", "CHANGELOG.md" ],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
],
"@semantic-release/npm",
"@semantic-release/github"
]
}

0 comments on commit fa742af

Please sign in to comment.