Skip to content

Commit

Permalink
Merge pull request #87 from databio/dev
Browse files Browse the repository at this point in the history
Migrate to `upload-artifact@v4`
  • Loading branch information
nleroy917 authored Feb 11, 2025
2 parents 848078e + ed5e37c commit af10480
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ jobs:
sccache: 'true'
manylinux: auto
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-linux-${{ matrix.target }}
path: ./bindings/python/dist

windows:
Expand All @@ -60,9 +60,9 @@ jobs:
sccache: 'true'
working-directory: ./bindings/python
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-windows-${{ matrix.target }}
path: ./bindings/python/dist

macos:
Expand All @@ -83,9 +83,9 @@ jobs:
sccache: 'true'
working-directory: ./bindings/python
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-macos-${{ matrix.target }}
path: ./bindings/python/dist

sdist:
Expand All @@ -99,9 +99,9 @@ jobs:
args: --out dist
working-directory: ./bindings/python
- name: Upload sdist
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-sdist
path: ./bindings/python/dist

release:
Expand All @@ -113,9 +113,8 @@ jobs:
if: "startsWith(github.ref, 'refs/tags/')"
needs: [linux, windows, macos, sdist]
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: wheels
path: ./bindings/python/dist
- name: List contents
run: |
Expand Down

0 comments on commit af10480

Please sign in to comment.