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 3303d9d commit 2ae8bb6Copy full SHA for 2ae8bb6
.github/workflows/build-python-package.yml
@@ -99,4 +99,7 @@ jobs:
99
env:
100
TWINE_USERNAME: __token__
101
TWINE_PASSWORD: ${{ secrets.pypi_password }}
102
- run: twine upload --verbose --repository-url https://test.pypi.org/legacy/ dist/*
+ run: |
103
+ ls -la ./dist/ # Debug: Check if wheels exist
104
+ echo "Attempting upload..."
105
+ twine upload --verbose --non-interactive --skip-existing dist/*
0 commit comments