Skip to content

Commit

Permalink
chore: add changelog generation
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonroberts committed Nov 9, 2023
1 parent 573d788 commit 87b0409
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,25 @@ module.exports = {
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
'@semantic-release/github',
{
'assets': ['dist/analog/public'],
successComment: false,
}
],
'@semantic-release/git'
[
"@semantic-release/git",
{
"assets": ["docs/CHANGELOG.md"]
}
]
],
'preset': 'angular'
};

0 comments on commit 87b0409

Please sign in to comment.