Skip to content

Commit

Permalink
[chore] fix push-tag command, used to do v0.2.0 release (#178)
Browse files Browse the repository at this point in the history
Signed-off-by: Bogdan Drutu <[email protected]>

Signed-off-by: Bogdan Drutu <[email protected]>
  • Loading branch information
Bogdan Drutu authored Oct 27, 2022
1 parent 6207030 commit e7e8144
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -177,11 +177,11 @@ multimod-prerelease: $(MULTIMOD)
multimod prerelease -s=true -b=false -v ./versions.yaml -m tools
$(MAKE) tidy

COMMIT ?= "HEAD"
REMOTE ?= "upstream"
COMMIT?=HEAD
REMOTE?=upstream
.PHONY: push-tags
push-tags: | $(MULTIMOD)
$(MULTIMOD) verify && $(MULTIMOD) tag -m tools -c ${COMMIT} -push -remote ${REMOTE}
$(MULTIMOD) verify && $(MULTIMOD) tag -m tools -c ${COMMIT} -p -r ${REMOTE}

FILENAME?=$(shell git branch --show-current)
.PHONY: chlog-new
Expand Down

0 comments on commit e7e8144

Please sign in to comment.