From 03314dddb885d73369c47ac6f7fc706e69ff59a5 Mon Sep 17 00:00:00 2001 From: Richard Preen Date: Mon, 6 May 2024 13:01:33 +0100 Subject: [PATCH] update wheel builder --- .github/workflows/wheels.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 77523c8bb..1284bb9d7 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -102,7 +102,7 @@ jobs: submodules: true - name: Build wheels - uses: pypa/cibuildwheel@v2.16.2 + uses: pypa/cibuildwheel@v2.17.0 env: CIBW_BEFORE_ALL_MACOS: CC=gcc-11 CXX=g++-11 CIBW_BUILD: ${{ matrix.python }}-${{ matrix.platform }} @@ -111,5 +111,11 @@ jobs: - uses: actions/upload-artifact@v4 with: + name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} path: ./wheelhouse/*.whl + + - uses: actions/download-artifact@v4 + with: + pattern: cibw-wheels-* + merge-multiple: true ...