semantic-release-expo-npm-github-publish
Version:
Sharable configuration for semantic-release, extends experience for publishing to NPM & Github: generates release-notes, changelog, publishes new version with Github actions.
64 lines (63 loc) • 1.02 kB
JSON
[
[
"semantic-release-expo",
{
"versions": {
"version": "${next.raw}",
"android": "${increment}",
"ios": "${increment}"
}
}
],
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "build",
"release": "patch"
},
{
"type": "ci",
"release": "patch"
},
{
"type": "chore",
"release": "patch"
},
{
"type": "docs",
"release": "patch"
},
{
"type": "refactor",
"release": "patch"
},
{
"type": "style",
"release": "patch"
},
{
"type": "test",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"app.json",
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "release(version): Release ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]