Skip to content

Commit a0b08da

Browse files
committed
Fix the tagging to tag with 'vx.y.z'
1 parent 569eeb9 commit a0b08da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ dist: clean ## Creates a source distribution and wheel distribution
3939

4040
tag: ## Tag version
4141
$(eval version := $(shell head -n 1 DMARCReporting/__init__.py | sed -e "s/__version__ = //" | sed -e "s/\"//g"))
42-
git tag -a $(version) -m "Bump version $(version)"
42+
git tag -a v$(version) -m "Bump version $(version)"
4343
git push origin master --follow-tags

0 commit comments

Comments
 (0)