Skip to content

Commit

Permalink
fix: add configuration to release
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Sep 9, 2021
1 parent 7b2b678 commit 2a68cad
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions release.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
module.exports = {
branches: 'master',
verifyConditions: ['@semantic-release/github'],
prepare: [
{
path: '@semantic-release/changelog',
changelogFile: 'CHANGELOG.md',
},
'@semantic-release/npm',
{
path: '@semantic-release/git',
assets: ['package.json', 'CHANGELOG.md'],
message:
'chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}',
},
],
publish: ['@semantic-release/github'],
success: [],
fail: [],
npmPublish: false,
};

0 comments on commit 2a68cad

Please sign in to comment.