feat: add helmchart updater

Signed-off-by: skuethe <56306041+skuethe@users.noreply.github.com>
This commit is contained in:
skuethe 2025-12-04 23:09:46 +01:00
parent 8d6175c13b
commit 9cb85f630c
No known key found for this signature in database
GPG key ID: 4A193084646743C0
5 changed files with 109 additions and 2 deletions

View file

@ -104,6 +104,8 @@ func newRunCommand() *cobra.Command {
updaters = append(updaters, updater.Changelog())
case "packagejson":
updaters = append(updaters, updater.PackageJson())
case "helmchart":
updaters = append(updaters, updater.HelmChart())
default:
return fmt.Errorf("unknown updater: %s", name)
}