From 453511692dd9efbcc09f677bbf344c107eefd411 Mon Sep 17 00:00:00 2001 From: Markus Demleitner Date: Tue, 17 Dec 2024 15:22:21 +0100 Subject: [PATCH] Adding tag and untag targets --- Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 199161f..4631090 100644 --- a/Makefile +++ b/Makefile @@ -108,9 +108,17 @@ clean: update: @echo "*** updating ivoatex from github" - cd ivoatex && git checkout master + cd ivoatex && git checkout master && git pull git submodule update --remote --rebase +tag: + git tag $(versionedName) + git push origin --tags $(versionedName) + +untag: + git tag -d $(versionedName) + git push origin :$(versionedName) + .FORCE: gitmeta.tex: .FORCE