Skip to content

Commit 071af8f

Browse files
committed
Fix uploading artifacts.
1 parent af07013 commit 071af8f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/pythonpublish.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,10 @@ jobs:
4949
pip install twine
5050
- name: Download wheels
5151
uses: actions/download-artifact@v2
52+
- name: Display structure of downloaded files
53+
run: ls -R
5254
- name: Publish wheels
5355
env:
5456
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
5557
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
56-
run: twine upload wheelhouse/*.whl
58+
run: twine upload artifact/*.whl

0 commit comments

Comments
 (0)