We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3a7a9bf + c8622a4 commit c526ffaCopy full SHA for c526ffa
1 file changed
Makefile
@@ -1,7 +1,8 @@
1
deploy:
2
- git tag -a v$(shell python -c "import codecov;print codecov.version;") -m ""
3
- git push origin v$(shell python -c "import codecov;print codecov.version;")
4
- python setup.py sdist bdist_wheel upload
+ git tag -a v$(python -c 'import codecov;print(codecov.version)') -m ""
+ git push origin v$(python -c 'import codecov;print(codecov.version)')
+ python setup.py sdist bdist_wheel
5
+ python -m twine upload dist/*
6
7
reinstall:
8
pip uninstall -y codecov
0 commit comments