Skip to content

Commit

Permalink
fix upload-artifact name
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianPugh committed Feb 27, 2024
1 parent fca3455 commit 0bfa604
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.os }}-${{ matrix.cibw_build }}-${{ matrix.cibw_archs }}
name: wheels-${{ matrix.os }}-${{ replace(matrix.cibw_build, '-*', '' }}-${{ matrix.cibw_archs }}
path: wheelhouse/*.whl

build_wheels_macos:
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.os }}-${{ matrix.cibw_build }}-${{ matrix.cibw_archs }}
name: wheels-${{ matrix.os }}-${{ replace(matrix.cibw_build, '-*', '' }}-${{ matrix.cibw_archs }}
path: wheelhouse/*.whl

build_wheels_macos_arm64:
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.os }}-${{ matrix.cibw_build }}-${{ matrix.cibw_archs }}
name: wheels-${{ matrix.os }}-${{ replace(matrix.cibw_build, '-*', '' }}-${{ matrix.cibw_archs }}
path: ./wheelhouse/*.whl

upload_to_pypi:
Expand Down

0 comments on commit 0bfa604

Please sign in to comment.