Skip to content

Instantly share code, notes, and snippets.

@tianhaoz95
Created May 19, 2021 08:09
Show Gist options
  • Save tianhaoz95/e2b9ab56d1d8a495d7f25d852e479dc4 to your computer and use it in GitHub Desktop.
Save tianhaoz95/e2b9ab56d1d8a495d7f25d852e479dc4 to your computer and use it in GitHub Desktop.
Configuration for semantic release for Ruby
{
"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