mirror of
https://github.com/lllin000/PaperForge.git
synced 2026-07-22 06:50:53 +00:00
fix: add v prefix to bump.py tags to match workflow trigger
This commit is contained in:
parent
2375f56443
commit
babe340379
1 changed files with 2 additions and 2 deletions
|
|
@ -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")
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue