Skip to content

Commit

Permalink
🔧 Update Makefile command for automatic package publish
Browse files Browse the repository at this point in the history
  • Loading branch information
riquelme222 committed Jun 21, 2023
1 parent 0fd47ab commit 84f3b7c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
ARGS :=

install_req:
pip install -U setuptools setuptools_scm wheel
pip install -U setuptools setuptools_scm wheel && python -m pip install twine

clean:
rm -rf build dist *.egg-info
Expand All @@ -14,7 +14,7 @@ git-tag:
./tag.sh $(ARGS)

deploy-test:
python -m pip install twine && twine upload --repository-url https://test.pypi.org/legacy/ dist/*
python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*

deploy:
python -m pip install twine && twine upload dist/*
python -m twine upload dist/*

0 comments on commit 84f3b7c

Please sign in to comment.