We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a56bd3 commit a1a9ab5Copy full SHA for a1a9ab5
1 file changed
.github/workflows/jsonschema.yaml
@@ -39,7 +39,7 @@ jobs:
39
- name: Verify ClusterGroup values.schema.json against values-*yaml files
40
run: |
41
set -e
42
- for i in $(find . -maxdepth 1 -type f -name "values-*.yaml" ! -name "values-global.yaml")
+ find . -maxdepth 1 -type f -name "values-*.yaml" ! -name "values-global.yaml" -print0 | while IFS= read -r -d '' i;
43
do
44
echo "$i"
45
# disable shellcheck of single quotes in yq
0 commit comments