From ca88749dc2e6b0a4ff38a7bddd631286a39c0955 Mon Sep 17 00:00:00 2001 From: LukeGus Date: Fri, 24 Oct 2025 21:55:49 -0500 Subject: [PATCH] fix: macOS build failing --- .github/workflows/electron-build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/electron-build.yml b/.github/workflows/electron-build.yml index f9eeb813..af7b085e 100644 --- a/.github/workflows/electron-build.yml +++ b/.github/workflows/electron-build.yml @@ -227,7 +227,10 @@ jobs: run: npm ci - name: Install macOS-specific build dependencies - run: npm install --force @rollup/rollup-darwin-arm64 + run: | + npm install --force @rollup/rollup-darwin-arm64 + npm uninstall @swc/core + npm install @swc/core --include=optional - name: Check for Code Signing Certificates id: check_certs