github-actions: update deploy to explore artifacts

This commit is contained in:
Martin Bubel 2024-01-13 15:19:04 +01:00
parent 180b29e2c7
commit 6bb610e5cb

View file

@ -118,7 +118,7 @@ jobs:
- name: Archive build artifacts
uses: actions/upload-artifact@v3
with:
name: wheelhouse-artifacts
name: wheelhouse-artifacts-linux
path: wheelhouse
deploy:
@ -138,14 +138,21 @@ jobs:
pip install --upgrade pip
pip install twine
- name: Download build artifacts
- name: Download linux build artifacts
uses: actions/download-artifact@v4
with:
path: wheelhouse
# merge-multiple: true
name: wheelhouse-artifacts-linux
path: wheelhouse-linux
- name: Download windows and mac build artifacts
uses: actions/download-artifact@v4
with:
path: dist
- name: Inspect wheelhouse files
run: ls -R wheelhouse
run: |
ls -R wheelhouse-linux
ls -R dist
# - name: Upload to PyPI using twine
# run: twine upload --skip-existing wheelhouse/*