From 84079bfc36a5082a088519003562e0edee0e5116 Mon Sep 17 00:00:00 2001 From: Mohamed Boudra Date: Wed, 11 Feb 2026 14:42:12 +0700 Subject: [PATCH] ci: allow package reads and use npm ci for release build --- .github/workflows/desktop-release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/desktop-release.yml b/.github/workflows/desktop-release.yml index 2ee49eea2..8ec3f4015 100644 --- a/.github/workflows/desktop-release.yml +++ b/.github/workflows/desktop-release.yml @@ -20,6 +20,7 @@ jobs: publish-tauri: permissions: contents: write + packages: read runs-on: macos-latest env: RELEASE_TAG: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.tag || github.ref_name }} @@ -44,7 +45,7 @@ jobs: targets: aarch64-apple-darwin - name: Install JS dependencies - run: npm install --workspace=@getpaseo/app --workspace=@getpaseo/desktop --include-workspace-root + run: npm ci env: NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}