From e7d3d992b4df4c1bfdfca303dcbc6e1b4535755c Mon Sep 17 00:00:00 2001 From: Daan Selen Date: Fri, 26 Sep 2025 10:22:57 +0200 Subject: [PATCH] fix: building error and use yarn --- .github/workflows/action-release.yaml | 4 ++-- app/config/menu.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/action-release.yaml b/.github/workflows/action-release.yaml index b427d11..00d5a1a 100644 --- a/.github/workflows/action-release.yaml +++ b/.github/workflows/action-release.yaml @@ -25,8 +25,8 @@ jobs: - name: Build the app run: | - npm install - npm run build + yarn install + yarn build shell: bash - name: Upload artifact diff --git a/app/config/menu.js b/app/config/menu.js index ee55600..821ac9e 100644 --- a/app/config/menu.js +++ b/app/config/menu.js @@ -1,6 +1,6 @@ import { dialog, BrowserWindow, ShareMenu, clipboard } from "electron"; import { getValue, setValue } from "./store.js"; -import { ElectronBlocker } from "@cliqz/adblocker-electron"; +import { ElectronBlocker } from "@ghostery/adblocker-electron"; import { clearActivity, setActivity } from "./rpc.js"; import prompt from "electron-prompt";