From 11a121cdce368aab96eac4e8fa2e65c05555120b Mon Sep 17 00:00:00 2001 From: Arthur Date: Thu, 3 Sep 2026 23:12:21 +0800 Subject: [PATCH] Stage the plugin manifest in Prepare Release prepare-release.ts has synced herdr-plugin.toml since the manifest was added, but the workflow commit never staged it, so release PRs would leave the plugin version behind. --- .github/workflows/prepare-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/prepare-release.yml b/.github/workflows/prepare-release.yml index 062a970..d59730b 100644 --- a/.github/workflows/prepare-release.yml +++ b/.github/workflows/prepare-release.yml @@ -57,7 +57,7 @@ jobs: git config user.name "github-actions[bot]" git config user.email "41898282+github-actions[bot]@users.noreply.github.com" git checkout -b "$branch" - git add package.json web/package.json server/package.json CHANGELOG.md + git add package.json web/package.json server/package.json herdr-plugin.toml CHANGELOG.md git commit -m "Release $VERSION" gh auth setup-git git push origin "$branch"