Skip to content

Commit

Permalink
Update publish.yml
Browse files Browse the repository at this point in the history
Fix string in name
  • Loading branch information
justi authored Dec 2, 2024
1 parent b69769c commit c897224
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,15 @@ jobs:
CIBW_ARCHS: ${{ matrix.cibw_archs }}
CIBW_BUILD: ${{ matrix.cibw_build }}
CIBW_SKIP: ${{ matrix.cibw_skip }}

- name: Sanitize matrix.cibw_build
id: sanitize_build
run: echo "CIBW_BUILD_SANITIZED=$(echo '${{ matrix.cibw_build }}' | sed 's/\*/_/g')" >> $GITHUB_ENV
shell: bash

- uses: actions/upload-artifact@v4
with:
name: wheelhouse-${{ matrix.os }}-${{ matrix.cibw_archs }}-${{ matrix.cibw_build }}
name: wheelhouse-${{ matrix.os }}-${{ matrix.cibw_archs }}-${{ env.CIBW_BUILD_SANITIZED }}
path: ./wheelhouse/*.whl

build_source:
Expand Down

0 comments on commit c897224

Please sign in to comment.