daphne/Makefile

17 lines
326 B
Makefile
Raw Normal View History

2016-06-29 01:27:04 +03:00
.PHONY: release
all:
release:
ifndef version
$(error Please supply a version)
endif
@echo Releasing version $(version)
ifeq (,$(findstring $(version),$(shell git log --oneline -1)))
$(error Last commit does not match version)
endif
git tag $(version)
git push
git push --tags
python setup.py sdist bdist_wheel upload