Skip to content

Commit

Permalink
Fixed build on MacOS (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
lvcabral authored Nov 12, 2024
1 parent 2b85ff5 commit 1b05d7a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,23 @@ jobs:

strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
os: [macos-latest, macos-13, ubuntu-latest, windows-latest]

steps:
- name: Check out Git repository
uses: actions/checkout@v1

- name: Install Python and setuptools
run: |
if: matrix.os == 'macos-latest'; then
python3 -m pip install --upgrade pip
python3 -m pip install setuptools
fi
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
with:
node-version: 19
node-version: 20

- name: Build/release Electron app
uses: johannesjo/action-electron-builder@v1
Expand Down

0 comments on commit 1b05d7a

Please sign in to comment.