Skip to content

Commit

Permalink
fix attempt 2
Browse files Browse the repository at this point in the history
  • Loading branch information
coredev-uk committed May 18, 2024
1 parent fab480e commit 0c6abe0
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,17 @@ jobs:
node-version-file: ".nvmrc"
cache: "yarn"

- name: Add DiskUtils (macOS)
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9

- name: Install DiskUtils (macOS)
if: ${{ matrix.os == 'macos-latest' }}
run: sudo -H pip install setuptools
# python3 -m pip install packaging
run: |
python -m pip install --upgrade pip
pip install setuptools
pip install packaging
- name: Install Dependencies
run: yarn install
Expand Down

0 comments on commit 0c6abe0

Please sign in to comment.