This commit is contained in:
Stavros kois
2024-05-12 22:41:41 +03:00
parent 5c90271604
commit 88f89c9f68
3 changed files with 7 additions and 2 deletions
+2
View File
@@ -1,4 +1,6 @@
#!/bin/bash
[ "$DEBUG" == 'true' ] && set -x
[ "$STRICT" == 'true' ] && set -e
file_path="$1"
base_cmd="yq --front-matter=process"
+4 -1
View File
@@ -154,9 +154,12 @@ jobs:
mkdir -p website/public/img/hotlink-ok/chart-icons || echo "chart-icons path already exists, continuing..."
mkdir -p website/public/img/hotlink-ok/chart-icons-small || echo "chart-icons-small path already exists, continuing..."
export DEBUG=true
export STRICT=true
for i in "${CHARTS[@]}"
do
DEBUG=true STRICT=true ./.github/scripts/chart-docs.sh "$i"
./.github/scripts/chart-docs.sh "$i"
done
- name: Commit Website Changes