Skip to content

Commit

Permalink
Added a helper script for tags.
Browse files Browse the repository at this point in the history
  • Loading branch information
lextm committed Oct 12, 2024
1 parent 9b07649 commit d35ac07
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions move-tag.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
import subprocess
import sys


def run_command(command):
"""Run a shell command and return the output."""
result = subprocess.run(command, shell=True, capture_output=True, text=True)
if result.returncode != 0:
print(f"Error: {result.stderr}")
sys.exit(result.returncode)
return result.stdout.strip()


def delete_tag(tag):
"""Delete a Git tag locally and remotely."""
print(f"Deleting local tag '{tag}'...")
run_command(f"git tag -d {tag}")

print(f"Deleting remote tag '{tag}'...")
run_command(f"git push origin :refs/tags/{tag}")


def create_and_push_tag(tag, branch):
"""Create a Git tag at the head of a branch and push it to remote."""
print(f"Creating tag '{tag}' at the head of branch '{branch}'...")
run_command(f"git tag {tag} {branch}")

print(f"Pushing tag '{tag}' to remote...")
run_command(f"git push origin {tag}")


def main():
if len(sys.argv) != 2:
print("Usage: python move-tag.py <version>")
sys.exit(1)

version = sys.argv[1]
tag = f"v{version}"
branch = f"release-{version}"

delete_tag(tag)
create_and_push_tag(tag, branch)
print(
f"Tag '{tag}' has been moved to the head of branch '{branch}' and pushed to remote."
)


if __name__ == "__main__":
main()

0 comments on commit d35ac07

Please sign in to comment.