This commit is contained in:
Auric Vente
2024-07-21 10:56:49 -06:00
parent 9a2c1bdcc5
commit 0ea97aa03d
3 changed files with 27 additions and 2 deletions

23
utils/tag.py Executable file
View File

@@ -0,0 +1,23 @@
#!/usr/bin/env python
# This is used to create a tag in the git repo
# You probably don't want to run this
# pacman: python-gitpython
import os
import git
import json
from pathlib import Path
here = Path(__file__).resolve()
parent = here.parent.parent
os.chdir(parent)
with open("cromulant/manifest.json") as f:
manifest = json.loads(f.read())
version = manifest["version"]
repo = git.Repo(".")
repo.create_tag(version)
repo.remotes.origin.push(version)
print(f"Created tag: {version}")