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 e7c0b6d commit f1c1d15Copy full SHA for f1c1d15
.github/workflows/build-python-package.yml
@@ -97,6 +97,8 @@ jobs:
97
- name: Publish
98
env:
99
TWINE_USERNAME: __token__
100
- TWINE_PASSWORD: ${{ secrets.pypi_password }}
+ TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
101
run: |
102
- (cd ./src/runtime/python && curl -I --fail https://pypi.org/project/$(python setup.py --name)/$(python setup.py --version)/) || twine upload dist/*
+ ls -la ./dist/ # Debug: Check if wheels exist
103
+ echo "Attempting upload..."
104
+ twine upload --verbose --non-interactive --skip-existing dist/*
0 commit comments