From e9b1ad7ffd28b1ab71ce81688fd34e2866b2e2c7 Mon Sep 17 00:00:00 2001 From: Andreas Holm <60451789+holm10@users.noreply.github.com> Date: Mon, 11 Mar 2024 00:00:51 -0700 Subject: [PATCH] Tries gathering all wheels --- .github/workflows/wheels.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 0105c5dd..a9fa83d4 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -30,9 +30,13 @@ jobs: - name: Build wheels run: python -m build +# - uses: actions/upload-artifact@v4 +# with: +# name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}-py${{ matrix.pyversions }} +# path: dist/*.whl - uses: actions/upload-artifact@v4 - with: - name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}-py${{ matrix.pyversions }} + with: + name: ${{ matrix.os }}-${{ matrix.pyversions }} path: dist/*.whl build_macosx_wheels: @@ -73,3 +77,9 @@ jobs: with: name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}-py${{ matrix.pyversions }} path: dist/*.whl + + gather_wheels: + name: Gathers built wheels + runs-on: ubuntu-latest + steps: + - uses: actions/download-artifact@v4