We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02c902e commit 3626891Copy full SHA for 3626891
.github/workflows/daily-wpt-fyi.yml
@@ -27,7 +27,7 @@ jobs:
27
steps:
28
- id: query
29
run: |
30
- matrix=$(curl -s https://raw.githubusercontent.com/nodejs/Release/refs/heads/main/schedule.json | jq --arg now "$(date +%Y-%m-%d)" '[with_entries(select(.value.end > $now and .value.start < $now)) | keys[] | ltrimstr("v") | tonumber] + ["latest-nightly"]')
+ matrix=$(curl -s https://raw.githubusercontent.com/nodejs/Release/refs/heads/main/schedule.json | jq -c --arg now "$(date +%Y-%m-%d)" '[with_entries(select(.value.end > $now and .value.start < $now)) | keys[] | ltrimstr("v") | tonumber] + ["latest-nightly"]')
31
echo "matrix=$matrix" >> "$GITHUB_OUTPUT"
32
report:
33
needs:
0 commit comments