use absolute path for kubeconform
All checks were successful
Validate Kubernetes Manifests / kubeconform (pull_request) Successful in 27s

This commit is contained in:
2025-12-03 20:22:07 +05:30
parent 47ddd8e4b4
commit 882d9f78fb

View File

@@ -71,7 +71,7 @@ jobs:
echo "Found $KIND - using custom schema"
SCHEMA_URL="https://raw.githubusercontent.com/datreeio/CRDs-catalog/refs/heads/main/${SCHEMA_MAP[$KIND]}"
if ! kubeconform \
if ! /kubeconform \
-schema-location "$SCHEMA_URL" \
-cache "$KUBECONFORM_CACHE_DIR" \
-output json \
@@ -80,7 +80,7 @@ jobs:
fi
else
echo "Validating with default schemas"
if ! kubeconform \
if ! /kubeconform \
-schema-location default \
-cache "$KUBECONFORM_CACHE_DIR" \
-output json \