Chart: Improve CI. (#12003)

This commit is contained in:
Marco Ebert 2024-09-28 15:40:02 +02:00 committed by GitHub
parent 24a9f972ff
commit f369ffb073
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
51 changed files with 306 additions and 584 deletions

View file

@ -170,7 +170,7 @@ func runHelmDocs() error {
if err != nil {
return err
}
err = sh.RunV("helm-docs", "--chart-search-root=${PWD}/charts")
err = sh.RunV("helm-docs", "--chart-search-root", "${PWD}/charts")
if err != nil {
return err
}
@ -181,7 +181,7 @@ func installHelmDocs() error {
utils.Info("HELM Install HelmDocs")
g0 := sh.RunCmd("go")
err := g0("install", "github.com/norwoodj/helm-docs/cmd/helm-docs@v1.11.0")
err := g0("install", "github.com/norwoodj/helm-docs/cmd/helm-docs@latest")
if err != nil {
return err
}