summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build-python-package.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/build-python-package.yml b/.github/workflows/build-python-package.yml
index d7d8ac94a..1bea3082b 100644
--- a/.github/workflows/build-python-package.yml
+++ b/.github/workflows/build-python-package.yml
@@ -97,6 +97,8 @@ jobs:
- name: Publish
env:
TWINE_USERNAME: __token__
- TWINE_PASSWORD: ${{ secrets.pypi_password }}
+ TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
- (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
+ echo "Attempting upload..."
+ twine upload --verbose --non-interactive --skip-existing dist/* \ No newline at end of file