Add --no-git-tag-version

This commit is contained in:
Jeremy Tuloup 2021-01-19 10:02:43 +01:00
parent 068a3ed006
commit c38f114221

View File

@ -37,7 +37,8 @@ commander
utils.run(`git commit -am "Release ${newPyVersion}"`);
// Version the changed
let cmd = 'jlpm run lerna version patch --no-push --amend --force-publish';
let cmd =
'jlpm run lerna version patch --no-push --amend --force-publish --no-git-tag-version';
if (options.force) {
cmd += ' --yes';
}