From c6b7cb2e32f1cd6de9f3839a6208dd9acfe48dc5 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Sun, 22 Feb 2026 15:26:21 -0800 Subject: [PATCH] ci(cli): use build script with SKIP_WASM_BUILD in release workflow --- .github/workflows/release-cli-npm.yml | 7 +++---- package.json | 1 - 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release-cli-npm.yml b/.github/workflows/release-cli-npm.yml index 69b23f47..152bf5a6 100644 --- a/.github/workflows/release-cli-npm.yml +++ b/.github/workflows/release-cli-npm.yml @@ -33,12 +33,11 @@ jobs: - name: Install dependencies run: npm ci - - name: Install wasm-pack - run: npm run bootstrap:install-wasm-pack - - name: Build plugin assets + env: + SKIP_WASM_BUILD: "1" run: | - npm run build-plugins + npm run build npm run vendor:vendor-plugins - name: Upload vendored assets diff --git a/package.json b/package.json index e47d9f55..3d4b47b6 100644 --- a/package.json +++ b/package.json @@ -70,7 +70,6 @@ "app-dev": "node scripts/run-dev.mjs", "migration": "node scripts/create-migration.cjs", "build": "npm run --workspaces --if-present build", - "build-plugins": "npm run --workspaces --if-present build", "test": "npm run --workspaces --if-present test", "icons": "run-p icons:*", "icons:dev": "tauri icon crates-tauri/yaak-app/icons/icon-dev.png --output crates-tauri/yaak-app/icons/dev",