We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acc1d86 commit f8777e2Copy full SHA for f8777e2
.github/workflows/publish.yml
@@ -28,10 +28,10 @@ jobs:
28
steps:
29
- uses: actions/checkout@v4
30
31
- - name: setup node
32
- uses: actions/setup-node@v4
+ - name: Setup Bun
+ uses: oven-sh/setup-bun@v1
33
with:
34
- node-version: lts/*
+ bun-version: latest
35
36
- name: install Rust stable
37
uses: dtolnay/rust-toolchain@stable
@@ -48,7 +48,7 @@ jobs:
48
# You can remove the one that doesn't apply to your app to speed up the workflow a bit.
49
50
- name: install frontend dependencies
51
- run: yarn install # change this to npm, pnpm or bun depending on which one you use.
+ run: bun install # change this to npm, pnpm or bun depending on which one you use.
52
53
- uses: tauri-apps/tauri-action@v0
54
env:
0 commit comments