Skip to content

Commit c6b7cb2

Browse files
committed
ci(cli): use build script with SKIP_WASM_BUILD in release workflow
1 parent 4aef826 commit c6b7cb2

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/release-cli-npm.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,11 @@ jobs:
3333
- name: Install dependencies
3434
run: npm ci
3535

36-
- name: Install wasm-pack
37-
run: npm run bootstrap:install-wasm-pack
38-
3936
- name: Build plugin assets
37+
env:
38+
SKIP_WASM_BUILD: "1"
4039
run: |
41-
npm run build-plugins
40+
npm run build
4241
npm run vendor:vendor-plugins
4342
4443
- name: Upload vendored assets

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@
7070
"app-dev": "node scripts/run-dev.mjs",
7171
"migration": "node scripts/create-migration.cjs",
7272
"build": "npm run --workspaces --if-present build",
73-
"build-plugins": "npm run --workspaces --if-present build",
7473
"test": "npm run --workspaces --if-present test",
7574
"icons": "run-p icons:*",
7675
"icons:dev": "tauri icon crates-tauri/yaak-app/icons/icon-dev.png --output crates-tauri/yaak-app/icons/dev",

0 commit comments

Comments
 (0)