Created
May 19, 2021 08:09
-
-
Save tianhaoz95/e2b9ab56d1d8a495d7f25d852e479dc4 to your computer and use it in GitHub Desktop.
Configuration for semantic release for Ruby
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
{ | |
"branches": [ | |
"main" | |
], | |
"plugins": [ | |
"@semantic-release/commit-analyzer", | |
"@semantic-release/release-notes-generator", | |
[ | |
"@semantic-release/npm", | |
{ | |
"npmPublish": false | |
} | |
], | |
"semantic-release-rubygem", | |
"@semantic-release/changelog", | |
[ | |
"@semantic-release/git", | |
{ | |
"assets": [ | |
"package.json", | |
"package-lock.json", | |
"lib/fastlane/plugin/flutter_version/version.rb", | |
"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