Skip to content

Commit

Permalink
split the download into multiple
Browse files Browse the repository at this point in the history
  • Loading branch information
pseudo-rnd-thoughts committed Sep 25, 2024
1 parent f4afd47 commit fb4cdc6
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,23 @@ jobs:

- uses: actions/download-artifact@v4
with:
name: |
wheels-windows-latest-AMD64
wheels-ubuntu-latest-x86_64
wheels-macos-12-x86_64
wheels-macos-12-arm64
name: wheels-windows-latest-AMD64
path: dist

- uses: actions/download-artifact@v4
with:
name: wheels-ubuntu-latest-x86_64
path: dist

- uses: actions/download-artifact@v4
with:
name: wheels-macos-12-x86_64
path: dist

- uses: actions/download-artifact@v4
with:
name: wheels-macos-12-arm64
path: dist
- run: ls dist/

# - name: Publish to PyPi test
Expand Down

0 comments on commit fb4cdc6

Please sign in to comment.