Skip to content

Commit

Permalink
fix: use pip install on nodejs 18
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando committed Sep 5, 2024
1 parent 4821402 commit 26f7b8a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,15 @@ jobs:
- run: yarn install --ignore-engines


# add missing distutils package to python 3.12
- name: Install distutils
run: |
# pip install setuptools
brew install python-setuptools
if [[ ${{ matrix.target-node }} == 18 ]]; then
pip install setuptools
else
brew install python-setuptools
fi
- run: yarn start --node-range node${{ matrix.target-node }} --arch arm64 --output dist
env:
Expand Down

0 comments on commit 26f7b8a

Please sign in to comment.