mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00
48 lines
1.1 KiB
JSON
48 lines
1.1 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": "./scripts/bundle.sh ${nextRelease.version} && ./scripts/package.sh ${nextRelease.version} && npx prettier --write CHANGELOG.md"
|
|
}
|
|
],
|
|
"@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)"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
]
|
|
}
|