Skip to content

Commit

Permalink
Fix download-artifact name -> pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
isaksamsten committed Jan 10, 2025
1 parent 9bbdfc0 commit 68b7a37
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/build-deploy-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,14 +159,25 @@ jobs:
publish_dir: ./html
destination_dir: ${{ needs.docs_version.outputs.version }}

list_artifacts:
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
pattern: wildboar-*
merge-multiple: true
path: dist
- run: ls -R dist

upload_pypi:
needs: [build_wheels, build_sdist, build_docs]
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') }}
steps:
- uses: actions/download-artifact@v4
with:
name: wildboar-*
pattern: wildboar-*
merge-multiple: true
path: dist

Expand Down

0 comments on commit 68b7a37

Please sign in to comment.