From d21054e30e5736fe83ff9dcbc4aa9c08ffefbfee Mon Sep 17 00:00:00 2001 From: Patrick Lewis <4015312+locus313@users.noreply.github.com> Date: Fri, 26 Jun 2026 22:50:52 -0700 Subject: [PATCH] fix: use config-file/manifest-file inputs so version-file is honoured The release-type: simple input caused the action to ignore release-please-config.json, defaulting to version.txt instead of VERSION. Switching to explicit config-file + manifest-file inputs forces the action to read all settings from the config. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1b28f3a..1a62987 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,5 +15,5 @@ jobs: steps: - uses: googleapis/release-please-action@45996ed1f6d02564a971a2fa1b5860e934307cf7 # v5 with: - release-type: simple - version-file: VERSION + config-file: release-please-config.json + manifest-file: .release-please-manifest.json