Skip to content

Commit

Permalink
chore: update workflow for package management
Browse files Browse the repository at this point in the history
  • Loading branch information
a145789 committed Jul 14, 2024
1 parent cb9f509 commit 9ff406e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,14 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install pnpm
run: corepack enable

- name: setup node
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'pnpm'

- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
Expand All @@ -42,7 +46,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: pnpm install # change this to npm, pnpm or bun depending on which one you use.
run: pnpm install --no-frozen-lockfile # 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 9ff406e

Please sign in to comment.