Skip to content

Commit

Permalink
ci: fix macos python3
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsSim committed May 5, 2024
1 parent f710e6b commit b4dd8ff
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/electron_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ jobs:
- name: Playwright Skip Browser Download
run: echo "PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1" >> $GITHUB_ENV

- name: python3 fix
if: matrix.os == 'macos-latest'
run: python3 -m pip install setuptools --break-system-packages

- name: Install dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: npm ci
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/electron_ci_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ jobs:
- name: Playwright Skip Browser Download
run: echo "PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1" >> $GITHUB_ENV

- name: python3 fix
if: matrix.os == 'macos-latest'
run: python3 -m pip install setuptools --break-system-packages

- name: Install dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: npm ci
Expand Down

0 comments on commit b4dd8ff

Please sign in to comment.