From 2ab1b3ecb39d5a0700bd40ff9c313a9cd08eaca1 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten-Lebbing Date: Tue, 19 Jul 2022 12:51:38 +0200 Subject: [PATCH] Update gen-docs.sh --- .github/scripts/gen-docs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/gen-docs.sh b/.github/scripts/gen-docs.sh index 70943451dbb..44624653b17 100755 --- a/.github/scripts/gen-docs.sh +++ b/.github/scripts/gen-docs.sh @@ -36,7 +36,7 @@ sync_helmignore() { local chartversion="$4" echo "Attempting to sync HelmIgnore file for: ${chartname}" rm -rf ${chart}/.helmignore - cp templates/app/.helmignore ${chart}/ + cp templates/chart/.helmignore ${chart}/ } export -f sync_helmignore @@ -72,7 +72,7 @@ generate_docs() { helm-docs \ --ignore-file=".helmdocsignore" \ --output-file="README.md" \ - --template-files="/__w/apps/apps/templates/docs/README.md.gotmpl" \ + --template-files="/__w/charts/charts/templates/docs/README.md.gotmpl" \ --chart-search-root="${chart}" } export -f generate_docs