fix: add v prefix to bump.py tags to match workflow trigger

This commit is contained in:
Research Assistant 2026-05-11 21:40:01 +08:00
parent 2375f56443
commit babe340379

View file

@ -101,8 +101,8 @@ def main():
except subprocess.CalledProcessError:
sys.exit("VERIFY FAILED: cannot read __init__.py from HEAD")
run(["git", "tag", "-f", new_ver])
print(f"Committed and tagged {new_ver}")
run(["git", "tag", "-f", f"v{new_ver}"])
print(f"Committed and tagged v{new_ver}")
print("Run: git push && git push --tags")