From 2299255e8b64b13e63ccc95d16c235c0db1635a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20R=2E=20Miguel?= Date: Fri, 2 Feb 2024 17:21:43 -0300 Subject: [PATCH] workflows: ensure jq returns compact output --- .github/workflows/build_images.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_images.yaml b/.github/workflows/build_images.yaml index d4ba7d4..124ea03 100644 --- a/.github/workflows/build_images.yaml +++ b/.github/workflows/build_images.yaml @@ -53,7 +53,7 @@ jobs: # Use jq to properly append the configurations, ensuring valid JSON format # Note: This requires jq to be installed or available in the runner environment - MODIFIED_MATRIX=$(echo $INITIAL_MATRIX | jq --argjson pgConfigs "$PG_CONFIGS" '.include += $pgConfigs') + MODIFIED_MATRIX=$(echo $INITIAL_MATRIX | jq -c --argjson pgConfigs "$PG_CONFIGS" '.include += $pgConfigs') echo "Modified Matrix: $MODIFIED_MATRIX"