Remove 'v' prefix from release git tag

Use the raw version string when creating annotated git tags (e.g. "1.2.3" instead of "v1.2.3"). This makes the tag name match args.new exactly and avoids automatically adding a leading "v" during the release tagging step.
This commit is contained in:
Ketan S 2026-04-02 19:05:21 +05:30
parent 252093e932
commit 282bb40aed

View file

@ -36,7 +36,7 @@ def generate_docs():
subprocess.call('git push', shell=True)
def add_tag():
subprocess.call('git tag -a v{} -m "version {}"'.format(args.new, args.new), shell=True)
subprocess.call('git tag -a {} -m "version {}"'.format(args.new, args.new), shell=True)
subprocess.call('git push origin --tags', shell=True)
def pushPod():