From c77d920bd21daca2f6b05756fe842375bc967d9f Mon Sep 17 00:00:00 2001 From: ERNEST ASARE-ASIEDU Date: Sat, 2 Sep 2023 19:03:00 -0400 Subject: [PATCH] Update(dev): push tag using bump.txt value (#19) --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 21e3425..19032fd 100644 --- a/Makefile +++ b/Makefile @@ -19,8 +19,9 @@ tag: fi push-tag: - echo "branch:$(remote) tag:[$(tag)]"; - @git push "$(remote)" "$(tag)"; + @tag="$$(make read-bump -s)"; \ + echo "branch:$(remote) tag:[$${tag}]"; \ + git push "$(remote)" "$${tag}"; \ tag-bump: @make tag tag="$$(make read-bump -s)"