From 9b2f4cd30276b60df956310c1d60e649a459583c Mon Sep 17 00:00:00 2001 From: Kjeld Schouten-Lebbing Date: Sun, 3 Apr 2022 15:57:09 +0200 Subject: [PATCH] Update charts-lint.yaml --- .github/workflows/charts-lint.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/charts-lint.yaml b/.github/workflows/charts-lint.yaml index 39be4f97fb2..2a8d78bda63 100644 --- a/.github/workflows/charts-lint.yaml +++ b/.github/workflows/charts-lint.yaml @@ -43,8 +43,8 @@ jobs: CHARTS=$(ct list-changed --config .github/ct-install.yaml) CHARTS_JSON=$(echo "${CHARTS}" | jq -R -s -c 'split("\n")[:-1]') OUTPUT_JSON=$(echo "{\"excluded\": ${EXCLUDED}, \"all\": ${CHARTS_JSON}}" | jq -c '.all-.excluded') - OUTPUT_JSON1=$(echo $CHARTS_JSON | jq -r -c '.[:254]') - OUTPUT_JSON2=$(echo $CHARTS_JSON | jq -r -c '.[254:500]') + OUTPUT_JSON1=$(echo $OUTPUT_JSON | jq -r -c '.[:254]') + OUTPUT_JSON2=$(echo $OUTPUT_JSON | jq -r -c '.[254:500]') echo ::set-output name=charts1::${OUTPUT_JSON1} echo ::set-output name=charts2::${OUTPUT_JSON2} if [[ $(echo ${OUTPUT_JSON1} | jq -c '. | length') -gt 0 ]]; then