Skip to content

Commit

Permalink
Added missing part in release.yml
Browse files Browse the repository at this point in the history
Forgot to add a chunk that is needed for the latest macOS runners.
  • Loading branch information
devbanu authored Mar 11, 2024
1 parent 92f6061 commit dfe4057
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,15 @@ jobs:
uses: docker/setup-qemu-action@v3
with:
platforms: all

# See discussion here: https://github.com/actions/runner-images/issues/9256
- name: Maker sure pipx is installed for the arm64 macOS runners.
if: runner.os == 'macOS' && runner.arch == 'ARM64'
run: |
brew install pipx
pipx ensurepath
echo "$HOME/.local/bin" >> $GITHUB_PATH
- run: pipx install cibuildwheel
- run: cibuildwheel --output-dir wh
env:
Expand Down

0 comments on commit dfe4057

Please sign in to comment.