Skip to content

Commit 80b5ae5

Browse files
authored
Update release.yml
1 parent 035b49b commit 80b5ae5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ jobs:
5656
- name: build Tauri app for Windows, Linux
5757
if: matrix.os != 'macos-latest'
5858
run: |
59-
npm ci
60-
npm run tauri build
59+
bun install --frozen-lockfile
60+
bunx tauri build
6161
env:
6262
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
6363
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
@@ -66,9 +66,9 @@ jobs:
6666
if: matrix.os == 'macos-latest'
6767
run: |
6868
rustup target add x86_64-apple-darwin
69-
npm ci
70-
npm run tauri build -- --target x86_64-apple-darwin
71-
npm run tauri build -- --target aarch64-apple-darwin
69+
bun install --frozen-lockfile
70+
bunx tauri build -- --target x86_64-apple-darwin
71+
bunx tauri build -- --target aarch64-apple-darwin
7272
env:
7373
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
7474
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}

0 commit comments

Comments
 (0)