Print instances found in workflow to log

This commit is contained in:
Ben Busby 2021-11-28 18:17:44 -07:00 committed by GitHub
parent d172c5d467
commit 17f83649c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,6 +31,7 @@ jobs:
# ==============================================================
# Searx update
# ==============================================================
echo "Fetching searx instances..."
curl -s https://searx.space/data/instances.json | \
jq '[
.instances |
@ -45,6 +46,8 @@ jobs:
select(.value.html.grade == "V" or .value.html.grade == "F") |
.key
] | sort' > searx-tmp.json
cat searx-tmp.json | jq .
jq --slurpfile searx searx-tmp.json \
'( .[] | select(.type == "searx") )