Last active
October 25, 2019 07:56
-
-
Save yurist38/9f4529310fa458605365640ef215e430 to your computer and use it in GitHub Desktop.
Semantic release config (GitHub Actions + GitHub NPM registry)
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
{ | |
"release": { | |
"branch": "master", | |
"tagFormat": "${version}", | |
"analyzeCommits": "simple-commit-message", | |
"repositoryUrl": "[email protected]:cvmaker-bv/types.git", | |
"plugins": [ | |
"@semantic-release/commit-analyzer", | |
"@semantic-release/release-notes-generator", | |
"@semantic-release/changelog", | |
"@semantic-release/npm", | |
[ | |
"@semantic-release/git", | |
{ | |
"assets": [ | |
"package.json", | |
"package-lock.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