Skip to content

Commit

Permalink
added bun setup to the workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
vMohammad24 committed Jan 16, 2025
1 parent 5dec304 commit 9accd96
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/tauri-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ jobs:
with:
node-version: lts/*

- name: setup bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest

- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
with:
Expand All @@ -49,7 +54,7 @@ jobs:
# You can remove the one that doesn't apply to your app to speed up the workflow a bit.

- name: install frontend dependencies
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.

- uses: tauri-apps/tauri-action@v0
env:
Expand Down

0 comments on commit 9accd96

Please sign in to comment.