Fix push task in Makefile

This commit is contained in:
Marcin Kulik
2023-07-05 16:10:44 +02:00
parent 791916d87d
commit ff14e5b5be

View File

@@ -55,11 +55,13 @@ install: build
.PHONY: push
push: .pip build
python3 -m twine upload dist/*
. $(VIRTUAL_ENV)/bin/activate \
&& python3 -m twine upload dist/*
.PHONY: push.test
push.test: .pip build
python3 -m twine upload --repository testpypi dist/*
. $(VIRTUAL_ENV)/bin/activate \
&& python3 -m twine upload --repository testpypi dist/*
.PHONY: clean