Skip to content

Commit 7af8097

Browse files
committed
fix: add macOS system dependency installation step in build workflow
1 parent 776067c commit 7af8097

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ jobs:
3737
sudo apt-get update
3838
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
3939
40+
- name: Install system dependencies (macOS only)
41+
if: startsWith(matrix.platform, 'macos')
42+
run: |
43+
brew install create-dmg
44+
4045
- name: Setup Node.js
4146
uses: actions/setup-node@v4
4247
with:

0 commit comments

Comments
 (0)