Skip to content

Commit

Permalink
🚧 Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
falexwolf committed Jan 17, 2025
1 parent 0647bbd commit acef866
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,16 @@ jobs:
GROUPS="$BASE_GROUPS]"
fi
echo "matrix={\"group\":$GROUPS}" >> $GITHUB_OUTPUT
# Construct and validate the JSON
MATRIX="{\"group\":$GROUPS}"
echo "$MATRIX" | jq . > /dev/null # Validate JSON
# Output the matrix
echo "matrix=$MATRIX" >> $GITHUB_OUTPUT
# Debug output
echo "Generated matrix:"
echo "$MATRIX" | jq .
test:
needs: pre-filter
Expand Down

0 comments on commit acef866

Please sign in to comment.