Skip to content

Commit

Permalink
ci: publish musl wheels for Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
mkniewallner committed Dec 19, 2024
1 parent 5fc0390 commit 63790a5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
strategy:
matrix:
target: [x86_64, aarch64]
manylinux: [auto, musllinux_1_1]
python: ['3.13', 'pypy3.10']
steps:
- name: Check out
Expand All @@ -63,14 +64,14 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
manylinux: ${{ matrix.manylinux }}
args: --release --out dist --interpreter ${{ startsWith(matrix.python, 'pypy') && matrix.python || format('python{0}', matrix.python) }}
sccache: 'true'
manylinux: auto

- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-linux-${{ matrix.target }}-${{ matrix.python }}
name: wheels-linux-${{ matrix.target }}-${{ matrix.manylinux }}-${{ matrix.python }}
path: dist

windows:
Expand Down

0 comments on commit 63790a5

Please sign in to comment.