Skip to content

Commit

Permalink
fix: set changelog path
Browse files Browse the repository at this point in the history
  • Loading branch information
robence committed May 28, 2024
1 parent 39abe35 commit 486dd3c
Showing 1 changed file with 17 additions and 7 deletions.
24 changes: 17 additions & 7 deletions release.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,23 @@ module.exports = {
// tagFormat: 'v${version}'
// eslint-disable-next-line no-template-curly-in-string
tagFormat: '${version}',
plugins: ['@semantic-release/commit-analyzer', '@semantic-release/release-notes-generator', '@semantic-release/npm', [
'@semantic-release/github',
{
assets: ['dist/**']
}
],
'@semantic-release/git'
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
[
'@semantic-release/changelog',
{
changelogFile: 'CHANGELOG.md'
}
],
'@semantic-release/npm',
[
'@semantic-release/github',
{
assets: ['dist/**']
}
],
'@semantic-release/git'
],
preset: 'angular'
}

0 comments on commit 486dd3c

Please sign in to comment.