From eac9368cbaf25de5c19541decac4d6a3920b968a Mon Sep 17 00:00:00 2001 From: /home/neo <158327205+neoapps-dev@users.noreply.github.com> Date: Thu, 12 Mar 2026 20:52:47 +0300 Subject: [PATCH] fix(workflow): use pnpm --- .github/workflows/publish.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 97c5137..09ae899 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -30,11 +30,15 @@ jobs: sudo apt-get update sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf + - name: setup pnpm + uses: pnpm/action-setup@v4 + with: + version: 10 - name: setup node uses: actions/setup-node@v4 with: node-version: lts/* - cache: 'npm' + cache: 'pnpm' - name: install Rust stable uses: dtolnay/rust-toolchain@stable @@ -47,12 +51,12 @@ jobs: workspaces: './src-tauri -> target' - name: install frontend dependencies - run: npm install + run: pnpm install - uses: tauri-apps/tauri-action@v0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - tagName: app-v__VERSION__ + tagName: v__VERSION__ releaseName: 'Emerald v__VERSION__' releaseBody: '*pls edit me*' releaseDraft: true