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)"