ci: remove "v" prefix from tags

This commit is contained in:
Philipp Dormann 2025-03-28 21:20:30 +01:00
parent 30905e481c
commit 2af682d1dd
Signed by: philipp
GPG Key ID: 3BB9ADD52DCA4314

View File

@ -91,12 +91,12 @@
"git": {
"commit": true,
"requireCleanWorkingDir": false,
"commitMessage": "chore(release): v${version}",
"commitMessage": "chore(release): ${version}",
"requireBranch": "dev",
"push": true,
"tag": true,
"tagName": "v${version}",
"tagAnnotation": "v${version}"
"tagName": "${version}",
"tagAnnotation": "${version}"
},
"npm": {
"publish": false
@ -111,4 +111,4 @@
"docs/*"
]
}
}
}