Skip to content

Commit

Permalink
cooking
Browse files Browse the repository at this point in the history
  • Loading branch information
keepingitneil committed Apr 27, 2024
1 parent 8444559 commit 0d8cb8a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-rtc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ jobs:
- uses: actions/setup-python@v4

- name: Install cibuildwheel
run: |
if [ "${{ matrix.os }}" = "macos-latest" ]; then
python -m pip install --break-system-packages cibuildwheel==2.15.0
else
python3 -m pip install cibuildwheel==2.15.0
fi
if: runner.os != 'macOS'
run: python3 -m pip install cibuildwheel==2.15.0

- name: Install cibuildwheel on macOS
if: runner.os == 'macOS'
run: python3 -m pip install --break-system-packages cibuildwheel==2.15.0

- name: Build wheels
run: python3 -m cibuildwheel --output-dir dist
Expand Down

0 comments on commit 0d8cb8a

Please sign in to comment.