From 77e48822e9f722221550e1286960707e2ef34537 Mon Sep 17 00:00:00 2001 From: Alexandre Gaubert Date: Tue, 26 May 2026 15:39:04 +0200 Subject: [PATCH] ci: drop pnpm cache from release workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `actions/setup-node` with `cache: pnpm` requires a `pnpm-lock.yaml` to compute the cache key, but this package has no dependencies and ships no lockfile — so the step failed ("Dependencies lock file is not found") before reaching `pnpm publish`, which is why the 0.1.0 release run never published to npm. The workflow only runs `pnpm publish` (no install), so there's nothing to cache. Remove the cache option. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/release.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9e11328..f4fce84 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,6 @@ jobs: with: node-version-file: .node-version registry-url: https://registry.npmjs.org - cache: pnpm - name: Set package version from release tag run: | VERSION="${{ github.event.release.tag_name }}"