Update .gitea/workflows/ci.yml
All checks were successful
Update Community Skins README / gather-skins (push) Successful in 13s
Update Community Skins README / generate-readme (push) Successful in 3s
Update Community Skins README / commit-readme (push) Successful in 2s

This commit is contained in:
2025-11-22 23:47:53 +01:00
parent ef5250f443
commit c2dcb49581

View File

@@ -46,7 +46,9 @@ jobs:
fetch_json() {
url="$1"
body_file=$(mktemp)
code=$(curl --retry 3 --retry-delay 5 -s -o "$body_file" -w "%{http_code}" "$url")
code=$(curl --retry 3 --retry-delay 5 -s \
-H "Authorization: token ${{ secrets.TOKEN }}" \
-o "$body_file" -w "%{http_code}" "$url")
echo "$code" "$body_file"
}