We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5162550 commit 3e48b61Copy full SHA for 3e48b61
.github/workflows/ci.yml
@@ -54,4 +54,5 @@ jobs:
54
env:
55
TWINE_USERNAME: __token__
56
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
57
- run: python -m twine upload dist/*
+ # NOTE: for now upload sdist only to prevent errors like unsupported platform tag 'linux_x86_64'.
58
+ run: python -m twine upload dist/*.tar.gz
0 commit comments