mirror of https://github.com/morpheus65535/bazarr
24 lines
492 B
JSON
24 lines
492 B
JSON
{
|
|
"git": {
|
|
"requireCleanWorkingDir": false,
|
|
"changelog": ".github/scripts/create_changelog.sh",
|
|
"tagName": "v${version}"
|
|
},
|
|
"github": {
|
|
"release": true,
|
|
"releaseName": "v${version}",
|
|
"assets": ["__builds__/*.zip"]
|
|
},
|
|
"npm": {
|
|
"publish": false,
|
|
"ignoreVersion": true
|
|
},
|
|
"hooks": {
|
|
"before:init": [
|
|
"chmod +x .github/scripts/*",
|
|
".github/scripts/pre_check.sh"
|
|
],
|
|
"after:git:release": ".github/scripts/create_asset.sh"
|
|
}
|
|
}
|