Skip to content

Commit

Permalink
upload-artifact is only at v4 yet
Browse files Browse the repository at this point in the history
  • Loading branch information
rmjarvis committed Jun 10, 2024
1 parent 613197d commit 9198838
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
# I think yum might always work here. But leave all options available.
CIBW_BEFORE_ALL: yum install -y fftw-devel || apt-get install libfftw3-dev || apk add --upgrade fftw-dev

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v4
with:
name: whl-linux
path: ./wheelhouse/*.whl
Expand All @@ -46,7 +46,7 @@ jobs:
# I think musl always uses apk, but keep all options available.
CIBW_BEFORE_ALL: apk add --upgrade fftw-dev || apt-get install libfftw3-dev || yum install -y fftw-devel

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v4
with:
name: whl-musl
path: ./wheelhouse/*.whl
Expand All @@ -67,7 +67,7 @@ jobs:
CIBW_SKIP: cp36* cp37* pp*
CIBW_BEFORE_ALL: brew install fftw || true

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v4
with:
name: whl-macos
path: ./wheelhouse/*.whl
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
PATH="/opt/homebrew/opt/llvm/bin:$PATH"
FFTW_DIR="/opt/homebrew"
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v4
with:
name: whl-arm
path: ./wheelhouse/*.whl
Expand Down

0 comments on commit 9198838

Please sign in to comment.