28 lines
660 B
JSON
28 lines
660 B
JSON
{
|
|
"git": {
|
|
"commitMessage": "chore(release): v${version}",
|
|
"tagName": "v${version}",
|
|
"requireCleanWorkingDir": true,
|
|
"addUntrackedFiles": true
|
|
},
|
|
"npm": {
|
|
"publish": false
|
|
},
|
|
"hooks": {
|
|
"after:release": "node ./scripts/create-gitea-release.js ${version}"
|
|
},
|
|
"github": false,
|
|
"plugins": {
|
|
"@release-it/conventional-changelog": {
|
|
"preset": "conventionalcommits",
|
|
"infile": "CHANGELOG.md"
|
|
}
|
|
},
|
|
"gitea": {
|
|
"host": "https://${GITEA_URL}",
|
|
"tokenRef": "GITEA_TOKEN"
|
|
},
|
|
|
|
"files": ["package.json", "CHANGELOG.md"]
|
|
}
|