Skip to content

Commit

Permalink
chore: add release configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
lpm0073 committed Nov 27, 2023
1 parent 6baa37a commit e430cdb
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions release.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
module.exports = {
dryRun: false,
plugins: [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
changelogFile: "CHANGELOG.md",
},
],
"@semantic-release/github",
[
"@semantic-release/git",
{
assets: ["CHANGELOG.md", "requirements.txt"],
message:
"chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}",
},
],
],
};

0 comments on commit e430cdb

Please sign in to comment.