Skip to content

Commit

Permalink
Tries gathering all wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
holm10 committed Mar 11, 2024
1 parent d1fddad commit e9b1ad7
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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

0 comments on commit e9b1ad7

Please sign in to comment.