castopod/.releaserc.json
Yassine Doghri fad06e697d
refactor: replace castopod ➡ castopod-host
- rename all occurences of castopod to castopod host
- docs: update contribution guidelines
-
docs: update README to include guidance for help and links to socials
- remove
castopod_namespace.json
2021-05-03 15:32:55 +00:00

48 lines
1.0 KiB
JSON

{
"branches": [
"main",
{ "name": "alpha", "prerelease": true },
{ "name": "beta", "prerelease": true }
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/exec",
{
"prepareCmd": "./prepare-release.sh ${nextRelease.version}"
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"app/Config/Constants.php",
"composer.json",
"package.json",
"package-lock.json",
"CHANGELOG.md"
]
}
],
[
"@semantic-release/gitlab",
{
"gitlabUrl": "https://code.podlibre.org/",
"assets": [
{
"path": "castopod-host-*.zip",
"label": "Castopod Host Package (zip)"
},
{
"path": "castopod-host-*.tar.gz",
"label": "Castopod Host Package (tar.gz)"
}
]
}
]
]
}