Skip to content

Commit

Permalink
ci: syntax fix
Browse files Browse the repository at this point in the history
something must have changed github-side
  • Loading branch information
proycon committed Oct 28, 2024
1 parent 6b56ff6 commit 02946db
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
- { cp: "cp310", rel: "3.10" }
- { cp: "cp311", rel: "3.11" }
- { cp: "cp312", rel: "3.12" }
- { cp: "cp313", rel: "3.13" }

steps:
- uses: actions/[email protected]
Expand Down Expand Up @@ -53,7 +54,7 @@ jobs:
CIBW_SKIP: "*-win* *-manylinux_i686 pp*"

- name: Build wheels (macOS)
if: ${{ runner.os == 'macOS' && runner.python != "3.8" }}
if: ${{ runner.os == 'macOS' && runner.python != '3.8' }}
run: python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_BUILD: ${{ matrix.python.cp }}-${{ matrix.buildplat.sys }}*
Expand All @@ -64,7 +65,7 @@ jobs:
brew install frog
- uses: actions/upload-artifact@v4
if: ${{ ! (runner.os == 'macOS' && runner.python == "3.8") }}
if: ${{ ! (runner.os == 'macOS' && runner.python == '3.8') }}
with:
name: ${{matrix.python.cp}}-${{matrix.buildplat.sys}}-${{matrix.buildplat.arch}}
path: ./wheelhouse/*.whl

0 comments on commit 02946db

Please sign in to comment.