Skip to content

Commit

Permalink
Add workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
richrace committed Apr 24, 2024
1 parent 77c7588 commit e2d2b3f
Showing 1 changed file with 30 additions and 5 deletions.
35 changes: 30 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,44 @@ on:
workflow_dispatch:

jobs:
build-macos:
runs-on: macos-latest
strategy:
fail-fast: false

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20

- name: setup python
uses: actions/setup-python@v5
with:
python-version: 3.12

- name: setup appdmg
run: |
python3 -m pip install setuptools
npm install -g [email protected]
- name: install dependencies
run: npm ci
- name: build
run: npm run make

build:
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
os: [ubuntu-latest, windows-latest]

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 19
node-version: 20
- name: install dependencies
run: npm ci
- name: build
Expand Down

0 comments on commit e2d2b3f

Please sign in to comment.