Skip to content

Commit

Permalink
Fix tagging with make
Browse files Browse the repository at this point in the history
Version name was not being prefixed with "v".
  • Loading branch information
regisb committed Feb 26, 2019
1 parent 64eb8e0 commit 88542b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ version: ## Print the current tutor version
@python -c 'import io, os; about = {}; exec(io.open(os.path.join("tutor", "__about__.py"), "rt", encoding="utf-8").read(), about); print(about["__version__"])'

tag: ## Create a release, update the "latest" tag and push them to origin
$(MAKE) retag TAG=$(shell make version)
$(MAKE) retag TAG=v$(shell make version)
$(MAKE) retag TAG=latest

retag:
Expand Down

0 comments on commit 88542b3

Please sign in to comment.