diff --git a/.github/scripts/chart-docs.sh b/.github/scripts/chart-docs.sh index 9e73f87562f..0dfade81c1f 100755 --- a/.github/scripts/chart-docs.sh +++ b/.github/scripts/chart-docs.sh @@ -12,11 +12,11 @@ keep_docs_safe() { local train="$1" local chart="$2" - mkdir -p "$tmp_docs_base" + mkdir -p "$tmp_docs_base/${train}/${chart}" echo "Keeping some docs safe..." - ls $docs_base/${train}/${chart} -la for doc in "${safe_docs[@]}"; do if [ ! -f "$docs_base/${train}/${chart}/${doc}" ]; then + echo "Doc [$doc] does not exist, cannot keep it safe. Skipping." continue fi mv "$docs_base/${train}/${chart}/${doc}" "$tmp_docs_base/${train}/${chart}/${doc}" @@ -30,6 +30,7 @@ restore_safe_docs() { echo "Restoring safe docs..." for doc in "${safe_docs[@]}"; do if [ ! -f "$tmp_docs_base/${train}/${chart}/${doc}" ]; then + echo "Doc [$doc] does not exist, cannot restore it. Skipping." continue fi mv "$tmp_docs_base/${train}/${chart}/${doc}" "$docs_base/${train}/${chart}/${doc}" diff --git a/charts/incubator/docuseal/Chart.yaml b/charts/incubator/docuseal/Chart.yaml index a3e4210ebb4..b09602bfe36 100644 --- a/charts/incubator/docuseal/Chart.yaml +++ b/charts/incubator/docuseal/Chart.yaml @@ -34,4 +34,4 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/incubator/docuseal - https://hub.docker.com/r/docuseal/docuseal type: application -version: 2.0.6 \ No newline at end of file +version: 2.0.7 \ No newline at end of file