mirror of
https://github.com/Expand-sys/ccash-client-js
synced 2026-03-22 12:27:09 +11:00
ci: fix release.config plugins array
This commit is contained in:
parent
f5b70712a2
commit
abb5aee53e
1 changed files with 8 additions and 8 deletions
|
|
@ -1,7 +1,7 @@
|
|||
module.exports = {
|
||||
branches: ['stable'],
|
||||
plugins: {
|
||||
commitAnalyzer: [
|
||||
plugins: [
|
||||
[
|
||||
'@semantic-release/commit-analyzer',
|
||||
{
|
||||
releaseRules: [
|
||||
|
|
@ -11,21 +11,21 @@ module.exports = {
|
|||
],
|
||||
},
|
||||
],
|
||||
releaseNotes: '@semantic-release/release-notes-generator',
|
||||
changelog: [
|
||||
'@semantic-release/release-notes-generator',
|
||||
[
|
||||
'@semantic-release/changelog',
|
||||
{
|
||||
changelogFile: 'CHANGELOG.md',
|
||||
changelogTitle: '# CHANGELOG',
|
||||
},
|
||||
],
|
||||
github: '@semantic-release/github',
|
||||
npm: '@semantic-release/npm',
|
||||
git: [
|
||||
'@semantic-release/github',
|
||||
'@semantic-release/npm',
|
||||
[
|
||||
'@semantic-release/git',
|
||||
{
|
||||
assets: ['CHANGELOG.md', 'package.json'],
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue