Skip to content

Commit

Permalink
fix: Created config file for semantic release
Browse files Browse the repository at this point in the history
  • Loading branch information
lakshmiravalir committed Aug 24, 2021
1 parent 553844d commit b372756
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions release.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
module.exports = {
branches: [
'test_branch_actions',
{
name: 'beta',
prerelease: true,
},
],
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
[
'@semantic-release/changelog',
{
changelogFile: 'CHANGES.md',
},
],
'@semantic-release/npm',
'@semantic-release/github',
[
'@semantic-release/git',
{
assets: ['CHANGES.md', 'package.json'],
// eslint-disable-next-line no-template-curly-in-string
message: 'chore(release): set `package.json` to ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}',
},
],
],
};

0 comments on commit b372756

Please sign in to comment.