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 7e1efb0 commit acaa6a2Copy full SHA for acaa6a2
.github/workflows/build_wheels.yml
@@ -187,11 +187,17 @@ jobs:
187
uses: actions/download-artifact@v4
188
with:
189
path: dist/
190
+ merge-multiple: true # Merge all artifacts into the dist/ directory
191
+
192
+ - name: Check dist contents
193
+ run: |
194
+ echo "Contents of dist:"
195
+ ls -l dist/
196
197
- name: Publish distribution to PyPI
198
uses: pypa/gh-action-pypi-publish@release/v1
- env:
- TWINE_USERNAME: "__token__"
- TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
199
+ with:
200
+ verbose: true
201
202
# - name: Upload to PyPI
203
# env:
0 commit comments