From f04c38168d026c9746c5fb9f8182cb9fadc06f53 Mon Sep 17 00:00:00 2001 From: Noste <83548733+Noooste@users.noreply.github.com> Date: Fri, 15 May 2026 18:29:07 +0200 Subject: [PATCH] fix(ci): correct appVersion tracking and remove changelog seeds (#49) * feat(ci): add automated release workflow and changelog management Signed-off-by: Noste <83548733+Noooste@users.noreply.github.com> * fix(ci): correct appVersion tracking and remove changelog seeds --------- Signed-off-by: Noste <83548733+Noooste@users.noreply.github.com> --- release-please-config.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/release-please-config.json b/release-please-config.json index 0dd7b4b..a5f1218 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -8,22 +8,22 @@ "release-type": "go", "component": "garage-ui", "include-component-in-tag": false, - "changelog-path": "CHANGELOG.md" + "changelog-path": "CHANGELOG.md", + "extra-files": [ + { + "type": "yaml", + "path": "helm/garage-ui/Chart.yaml", + "jsonpath": "$.appVersion", + "glob": false + } + ] }, "helm/garage-ui": { "release-type": "helm", "component": "garage-ui-chart", "package-name": "garage-ui", "include-component-in-tag": true, - "changelog-path": "CHANGELOG.md", - "extra-files": [ - { - "type": "yaml", - "path": "Chart.yaml", - "jsonpath": "$.appVersion", - "glob": false - } - ] + "changelog-path": "CHANGELOG.md" } } }