feat: come a new action

This commit is contained in:
cycjimmy 2019-10-17 19:27:21 +08:00
parent d9823e84f7
commit b9ad41da60
17 changed files with 5822 additions and 2 deletions

24
release.config.js Normal file
View file

@ -0,0 +1,24 @@
module.exports = {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "docs/CHANGELOG.md"
}
],
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"docs/CHANGELOG.md",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
};