From 5a3ec6fd54c7f1d402c4889119c6fe71fae9c957 Mon Sep 17 00:00:00 2001 From: Tim Curtin <8890118+timm088@users.noreply.github.com> Date: Wed, 27 May 2026 10:36:17 +1000 Subject: [PATCH 1/2] Match the npm example --- .github/workflows/publish.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 2d890f6d..5fe7d2ef 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -26,9 +26,9 @@ jobs: - name: Setup node uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # pin@v6.3.0 with: - node-version-file: ".nvmrc" + node-version: '22' # matches .nvmrc registry-url: https://registry.npmjs.org/ - cache: yarn + package-manager-cache: false # never use caching in release builds - name: Install dependencies run: yarn install --frozen-lockfile --network-concurrency 1 From a7f244c83fd1a7bc06142cafb58b8251b325e853 Mon Sep 17 00:00:00 2001 From: Tim Curtin <8890118+timm088@users.noreply.github.com> Date: Wed, 27 May 2026 10:37:59 +1000 Subject: [PATCH 2/2] Remove trailing slash --- .github/workflows/publish.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 5fe7d2ef..d0fa3754 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -27,7 +27,7 @@ jobs: uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # pin@v6.3.0 with: node-version: '22' # matches .nvmrc - registry-url: https://registry.npmjs.org/ + registry-url: https://registry.npmjs.org package-manager-cache: false # never use caching in release builds - name: Install dependencies