Skip to content

Commit 48fbcca

Browse files
committed
Fix bug in "make tag"
1 parent 9c2c7b4 commit 48fbcca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ clean-build: ## Clean build artifacts
4040
.PHONY: tag
4141
tag: ## Add a Git tag and push it to origin with syntax: make tag TAG=tag_name
4242
@echo "🚀 Creating git tag: ${TAG}"
43-
@git tag -a ${TAG}
43+
@git tag -a ${TAG} -m ""
4444
@echo "🚀 Pushing tag to origin: ${TAG}"
4545
@git push origin ${TAG}
4646

0 commit comments

Comments
 (0)