We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49c87cf commit ef1631eCopy full SHA for ef1631e
src/publish.js
@@ -240,6 +240,7 @@ export async function publish(args) {
240
if (args.tag) {
241
tagName = `${args.tag}/${tagName}`;
242
}
243
+ tagName = "release/" + tagName; // prefix with 'release/' to avoid conflicts with other tags
244
let cmd = `git tag -a ${tagName} -m "Published ${packageJson.version}" && git push origin ${tagName}`;
245
246
// set username and email for git
0 commit comments