We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c98786f commit d2f8bcaCopy full SHA for d2f8bca
.github/workflows/packing.yml
@@ -202,7 +202,7 @@ jobs:
202
path: pip_dist
203
204
- name: Publish artifacts
205
- run: make pip-dist-publish
+ run: twine upload -r $PYPI_REPO -u __token__ -p $PYPI_TOKEN pip_dist/*
206
env:
207
PYPI_REPO: pypi
208
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
Makefile
@@ -48,10 +48,6 @@ pip-dist: pip-sdist pip-bdist
48
pip-dist-check:
49
twine check pip_dist/*
50
51
-.PHONY: pip-dist-publish
52
-pip-dist-publish:
53
- twine upload -r testpypi -u __token__ -p ${PYPI_TOKEN} pip_dist/*
54
-
55
56
.PHONY: rpm-dist
57
rpm-dist:
0 commit comments