Skip to content

Commit

Permalink
github-actions: update deploy to explore artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBubel committed Jan 13, 2024
1 parent 180b29e commit 6bb610e
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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/*
Expand Down

0 comments on commit 6bb610e

Please sign in to comment.