31 lines
640 B
JSON
31 lines
640 B
JSON
{
|
|
"git": {
|
|
"commitMessage": "chore(release): v${version}",
|
|
"tagName": "v${version}",
|
|
"requireCleanWorkingDir": true
|
|
},
|
|
"npm": false,
|
|
"hooks": {
|
|
"after:bump": "echo Version bumped to ${version}",
|
|
"after:release": "echo SUCCESSFULLY RELEASED: v${version} > test.log"
|
|
|
|
},
|
|
"github": false,
|
|
"plugins": {
|
|
"@release-it/conventional-changelog": {
|
|
"preset": "conventionalcommits",
|
|
"infile": "CHANGELOG.md",
|
|
"config": ".versionrc.json"
|
|
}
|
|
},
|
|
"gitea": {
|
|
"host": "https://${GITEA_URL}",
|
|
"tokenRef": "GITEA_TOKEN"
|
|
},
|
|
"increment": {
|
|
"prerelease": {
|
|
"name": "alpha"
|
|
}
|
|
}
|
|
}
|