Last active
April 20, 2020 13:26
-
-
Save favoyang/2614c416c2bbff5c6436282780e64a13 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#6bf4
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, "pkgRoot": "Packages/com.littlebigfun.semantic-release-upm-example" }], | |
["@semantic-release/git", { | |
"assets": ["Packages/com.littlebigfun.semantic-release-upm-example/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