Compare commits

..

1 Commits

Author SHA1 Message Date
be9c0efa6c Update helm/chart-testing-action action to v2.8.0
Some checks failed
lint-and-test / lint-helm (pull_request) Failing after 13s
lint-and-test / chart-testing (pull_request) Failing after 53s
2025-12-15 17:54:44 +00:00

View File

@@ -170,13 +170,7 @@ jobs:
helm dependency list --max-col-width 120 charts/$dir 2> /dev/null \
| tail +2 | head -n -1 \
| awk '{ print "helm repo add " $1 " " $3 }' \
| while read cmd; do
if [[ "$cmd" == "helm repo add oci:*" ]]; then
echo ">> Ignoring OCI repo"
else
echo "$cmd" | sh;
fi
done || true
| while read cmd; do echo "$cmd" | sh; done || true
done
if helm repo list | tail +2 | read -r; then