Last active
April 20, 2020 13:24
-
-
Save favoyang/646ea3ca8138c7dfb4a51964cd5d8d8d to your computer and use it in GitHub Desktop.
The configuration file of semantic-release. https://medium.com/openupm/how-to-maintain-upm-package-part-2-f352fbf5f87c#09a7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"tagFormat": "v${version}", | |
"plugins": [ | |
["@semantic-release/commit-analyzer", { "preset": "angular" }], | |
"@semantic-release/release-notes-generator", | |
["@semantic-release/changelog", { "preset": "angular" }], | |
["@semantic-release/npm", { "npmPublish": false }], | |
["@semantic-release/git", { | |
"assets": ["package.json", "CHANGELOG.md"], | |
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" | |
}], | |
"@semantic-release/github" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment