Skip to content

Commit

Permalink
Migrate to v4 for upload/dowlnoad artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
sveinung-r committed Sep 10, 2024
1 parent 0bb8ec8 commit 624fca9
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,9 @@ jobs:
run: |
python -m cibuildwheel --output-dir wheelhouse python/
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: wheel-${{ matrix.os }}-${{ matrix.arch }}
path: ./wheelhouse/*.whl

publish:
Expand All @@ -63,7 +64,11 @@ jobs:
steps:
- uses: actions/checkout@v2

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
pattern: wheel-*
merge-multiple: true
path: ./wheelhouse/

- name: Publish wheels to PyPI

Expand Down

0 comments on commit 624fca9

Please sign in to comment.