From 63790a5ea30384e455fe22f60493a0e1e76cae48 Mon Sep 17 00:00:00 2001 From: Mathieu Kniewallner Date: Thu, 19 Dec 2024 20:59:25 +0100 Subject: [PATCH] ci: publish `musl` wheels for Linux --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 589f49d4..6eeada96 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -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: