fix command, add logs
All checks were successful
renovate / renovate (push) Successful in 1m27s

This commit is contained in:
2025-11-30 21:36:22 -06:00
parent 7d27140114
commit b7913afca1

View File

@@ -44,10 +44,18 @@ jobs:
- name: Add Repositories
run: |
echo ">> Adding repositories for chart dependencies ..."
for chart_path in ${MAIN_DIR}/clusters/$cluster/helm/*; do
helm dependency list --max-col-width 120 $chart_path 2> /dev/null | tail +2 | head -n -1 | awk '{ print "helm repo add " $1 " " $3 }' | while read cmd; do $cmd; done
helm dependency list --max-col-width 120 $chart_path 2> /dev/null \
| tail +2 | head -n 1 \
| tee repo_added \
| awk '{ print "helm repo add " $1 " " $3 }' \
| while read cmd; do $cmd; done
done
echo ">> Added following repos:"
cat repo_add | sort | uniq
- name: Render Helm Manifests
run: |
for cluster in ${CLUSTERS}; do