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 = {
|
module.exports = {
|
||||||
branches: ['stable'],
|
branches: ['stable'],
|
||||||
plugins: {
|
plugins: [
|
||||||
commitAnalyzer: [
|
[
|
||||||
'@semantic-release/commit-analyzer',
|
'@semantic-release/commit-analyzer',
|
||||||
{
|
{
|
||||||
releaseRules: [
|
releaseRules: [
|
||||||
|
|
@ -11,21 +11,21 @@ module.exports = {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
releaseNotes: '@semantic-release/release-notes-generator',
|
'@semantic-release/release-notes-generator',
|
||||||
changelog: [
|
[
|
||||||
'@semantic-release/changelog',
|
'@semantic-release/changelog',
|
||||||
{
|
{
|
||||||
changelogFile: 'CHANGELOG.md',
|
changelogFile: 'CHANGELOG.md',
|
||||||
changelogTitle: '# CHANGELOG',
|
changelogTitle: '# CHANGELOG',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
github: '@semantic-release/github',
|
'@semantic-release/github',
|
||||||
npm: '@semantic-release/npm',
|
'@semantic-release/npm',
|
||||||
git: [
|
[
|
||||||
'@semantic-release/git',
|
'@semantic-release/git',
|
||||||
{
|
{
|
||||||
assets: ['CHANGELOG.md', 'package.json'],
|
assets: ['CHANGELOG.md', 'package.json'],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
],
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue