Skip to content

Commit

Permalink
workflows: ensure jq returns compact output
Browse files Browse the repository at this point in the history
  • Loading branch information
vrmiguel committed Feb 2, 2024
1 parent a2c2502 commit 2299255
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 2299255

Please sign in to comment.