From ef614c48799f2c93b7160fbfaea6aeb643284cb6 Mon Sep 17 00:00:00 2001 From: LukeGus Date: Fri, 24 Oct 2025 16:59:28 -0500 Subject: [PATCH] fix: Rollup package issue --- .github/workflows/electron-build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/electron-build.yml b/.github/workflows/electron-build.yml index dd1a3e39..c50305d5 100644 --- a/.github/workflows/electron-build.yml +++ b/.github/workflows/electron-build.yml @@ -109,7 +109,12 @@ jobs: cache: "npm" - name: Install dependencies - run: npm ci + run: | + rm -f package-lock.json + npm install + npm install --force @rollup/rollup-linux-x64-gnu + npm install --force @rollup/rollup-linux-arm64-gnu + npm install --force @rollup/rollup-linux-arm-gnueabihf - name: Build Linux (All Architectures) run: npm run build && npx electron-builder --linux --x64 --arm64 --armv7l