We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b698152 commit 1f750f6Copy full SHA for 1f750f6
.github/workflows/main.yml
@@ -35,7 +35,7 @@ jobs:
35
RUNS=$(gh api "repos/$GITHUB_REPOSITORY/commits/main/check-runs" --paginate)
36
echo "checks..."
37
FILTERED=$(jq -c -r '.check_runs[] | select(.name | endswith("-env")) | { "config": .name, "build_path": .output.text }' <<< "$RUNS")
38
- MATRIX=$(./jq --slurp -c -r '. as $jobs | map(.config | split(".") | first) | unique | map(. as $group | {"platform": $group, "jobs": $jobs | map(select(.config |startswith($group)))})' <<< "$FILTERED")
+ MATRIX=$(jq --slurp -c -r '. as $jobs | map(.config | split(".") | first) | unique | map(. as $group | {"platform": $group, "jobs": $jobs | map(select(.config |startswith($group)))})' <<< "$FILTERED")
39
echo "creating result matrix."
40
echo "matrix=$MATRIX" >> $GITHUB_OUTPUT
41
0 commit comments