From 08b3dea7844e6149fa204624d3c81d07a11110aa Mon Sep 17 00:00:00 2001 From: kjeld Schouten-Lebbing Date: Wed, 8 Sep 2021 00:38:37 +0200 Subject: [PATCH] fix: correct path for helm-docs generation --- tools/build-release.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/build-release.sh b/tools/build-release.sh index 79f332eaad8..83c464d9ddf 100755 --- a/tools/build-release.sh +++ b/tools/build-release.sh @@ -169,33 +169,33 @@ generate_docs() { helm-docs \ --ignore-file=".helmdocsignore" \ --output-file="README.md" \ - --template-files="/home/runner/work/apps/apps/templates/docs/common-README.md.gotmpl" \ + --template-files="/__w/apps/apps/templates/docs/common-README.md.gotmpl" \ --chart-search-root="/home/runner/work/apps/apps/charts/library/common" helm-docs \ --ignore-file=".helmdocsignore" \ --output-file="helm-values.md" \ - --template-files="/home/runner/work/apps/apps/templates/docs/common-helm-values.md.gotmpl" \ + --template-files="/__w/apps/apps/templates/docs/common-helm-values.md.gotmpl" \ --chart-search-root="/home/runner/work/apps/apps/charts/library/common" else helm-docs \ --ignore-file=".helmdocsignore" \ --output-file="README.md" \ - --template-files="/home/runner/work/apps/apps/templates/docs/README.md.gotmpl" \ + --template-files="/__w/apps/apps/templates/docs/README.md.gotmpl" \ --chart-search-root="${chart}" helm-docs \ --ignore-file=".helmdocsignore" \ --output-file="CONFIG.md" \ - --template-files="/home/runner/work/apps/apps/templates/docs/CONFIG.md.gotmpl" \ + --template-files="/__w/apps/apps/templates/docs/CONFIG.md.gotmpl" \ --chart-search-root="${chart}" helm-docs \ --ignore-file=".helmdocsignore" \ --output-file="app-readme.md" \ - --template-files="/home/runner/work/apps/apps/templates/docs/app-readme.md.gotmpl" \ + --template-files="/__w/apps/apps/templates/docs/app-readme.md.gotmpl" \ --chart-search-root="${chart}" helm-docs \ --ignore-file=".helmdocsignore" \ --output-file="helm-values.md" \ - --template-files="/home/runner/work/apps/apps/templates/docs/helm-values.md.gotmpl" \ + --template-files="/__w/apps/apps/templates/docs/helm-values.md.gotmpl" \ --chart-search-root="${chart}" fi fi