From 293323d72b42e11bf7ec372c43f4716a959a623c Mon Sep 17 00:00:00 2001 From: Ben Williams Date: Mon, 10 Aug 2026 13:35:26 -0700 Subject: [PATCH] Fix publish version check setup --- .github/workflows/publish.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8973473..551a3c3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -52,6 +52,10 @@ jobs: uses: actions/setup-node@v5 with: node-version: 24 + # This job does not install dependencies. Disable setup-node's + # automatic package-manager cache, which otherwise probes pnpm + # before the publish job installs it. + package-manager-cache: false - name: Check if version should be published if: steps.revision.outputs.is_current == 'true'