Skip to content

Commit

Permalink
Update to new download/upload action
Browse files Browse the repository at this point in the history
  • Loading branch information
emlowe committed Oct 18, 2024
1 parent 3510812 commit 42630e7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-arm64-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
needs: build_wheels
steps:
- name: Fetch wheels from previous job
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: wheels
path: target/wheels/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-m1-wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
python-version: "3.10"

- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: wheels
path: ./target/wheels/
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-${{ matrix.os }}-py-${{ matrix.python }}
path: ./target/wheels/

upload:
Expand All @@ -250,9 +250,10 @@ jobs:
python-version: "3.10"

- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: wheels
merge-multiple: true
pattern: wheels-*
path: ./target/wheels/

- name: Check for incompatible wheels and bail if found
Expand Down

0 comments on commit 42630e7

Please sign in to comment.