change to directory
Some checks failed
renovate / renovate (push) Has been cancelled

This commit is contained in:
2025-11-29 22:44:35 -06:00
parent 7408d8effb
commit e4b3d06e1d

View File

@@ -43,11 +43,13 @@ jobs:
if [ -f "$chart_path/Chart.yaml" ]; then
OUTPUT_FILE="clusters/$cluster/manifests/$chart_name.yaml"
cd $chart_path
echo ">> Building helm dependency ..."
helm dependency build
helm dependency build "$chart_name"
echo ">> Linting helm ..."
helm lint "$chart_path" --namespace "$chart_name" --with-subcharts
helm lint "$chart_name" --namespace "$chart_name" --with-subcharts
helm template "$chart_name" "$chart_path" --namespace "$chart_name" > "$OUTPUT_FILE"