mirror of https://github.com/morpheus65535/bazarr
33 lines
581 B
JSON
33 lines
581 B
JSON
{
|
|
"git": {
|
|
"requireCleanWorkingDir": false,
|
|
"changelog": "auto-changelog --stdout",
|
|
"tagName": "v${version}"
|
|
},
|
|
"github": {
|
|
"release": true,
|
|
"releaseName": "v${version}",
|
|
"assets": ["__builds__/*.zip"]
|
|
},
|
|
"npm": {
|
|
"publish": false,
|
|
"ignoreVersion": true
|
|
},
|
|
"hooks": {
|
|
"after:git:release": [
|
|
"chmod +x .github/scripts/*",
|
|
".github/scripts/create_asset.sh"
|
|
]
|
|
},
|
|
"plugins": {
|
|
"@release-it/bumper": {
|
|
"in": {
|
|
"file": "VERSION"
|
|
},
|
|
"out": {
|
|
"file": "VERSION"
|
|
}
|
|
}
|
|
}
|
|
}
|