From f55907c0c3c2b8a23e3538de6cbcf82ce666962d Mon Sep 17 00:00:00 2001 From: Matthias Osswald Date: Wed, 3 Jun 2026 15:37:41 +0200 Subject: [PATCH] fix: Update release-please extra-files to current plugin.json paths The .claude-plugin/plugin.json files no longer exist. Plugin manifests now live at plugins//plugin.json and a copy at plugins//.github/plugin/plugin.json (for Windows-safe discovery). Point release-please at all four so versions stay in sync on release. --- release-please-config.json | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/release-please-config.json b/release-please-config.json index c3ebb31..ae3c13d 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -66,12 +66,22 @@ "extra-files": [ { "type": "json", - "path": "plugins/ui5/.claude-plugin/plugin.json", + "path": "plugins/ui5/plugin.json", "jsonpath": "$..version" }, { "type": "json", - "path": "plugins/ui5-typescript-conversion/.claude-plugin/plugin.json", + "path": "plugins/ui5/.github/plugin/plugin.json", + "jsonpath": "$..version" + }, + { + "type": "json", + "path": "plugins/ui5-typescript-conversion/plugin.json", + "jsonpath": "$..version" + }, + { + "type": "json", + "path": "plugins/ui5-typescript-conversion/.github/plugin/plugin.json", "jsonpath": "$..version" } ]