Skip to content

Commit

Permalink
v1.13.6
Browse files Browse the repository at this point in the history
  • Loading branch information
rpuntaie committed Dec 31, 2020
1 parent adc3c02 commit 9e9fb0f
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: test check dist up man
.PHONY: test check dist up man tag devinstall

test:
py.test
Expand All @@ -16,3 +16,12 @@ dist: test man
up: dist
twine upload dist/`ls dist -rt | tail -1`

devinstall:
sudo pip install -e .

tag: devinstall
$(eval TAGMSG="v$(shell stpl --version | cut -d ' ' -f 2)")
echo $(TAGMSG)
git tag -s $(TAGMSG) -m"$(TAGMSG)"
git verify-tag $(TAGMSG)
git push origin $(TAGMSG) --follow-tags

0 comments on commit 9e9fb0f

Please sign in to comment.