From 55d4d658b7de2a225bf57e9168477450fb839338 Mon Sep 17 00:00:00 2001 From: LukeGus Date: Sun, 19 Oct 2025 02:21:45 -0500 Subject: [PATCH] fix: Improve macOS support --- .github/workflows/electron-build.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/electron-build.yml b/.github/workflows/electron-build.yml index 2d745a3c..7ccbbc55 100644 --- a/.github/workflows/electron-build.yml +++ b/.github/workflows/electron-build.yml @@ -110,7 +110,9 @@ jobs: cache: "npm" - name: Install dependencies - run: npm ci + run: | + npm ci --include=optional + npm rebuild - name: Build macOS DMG run: npm run build:mac-dmg @@ -154,7 +156,9 @@ jobs: cache: "npm" - name: Install dependencies - run: npm ci + run: | + npm ci --include=optional + npm rebuild - name: Check for Code Signing Certificates id: check_certs