mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-03-17 20:47:50 +02:00
chore(ci): debug deploy
Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
This commit is contained in:
parent
7900834837
commit
69826bd442
@ -4,7 +4,7 @@ set -xeuo pipefail
|
||||
url="https://api.github.com/repos/goreleaser/goreleaser/releases"
|
||||
|
||||
get_last_page() {
|
||||
curl -sf -I -H "Authorization: Bearer $GITHUB_TOKEN" \
|
||||
curl -sSf -I -H "Authorization: Bearer $GITHUB_TOKEN" \
|
||||
"$url" |
|
||||
grep -E '^Link: ' |
|
||||
sed -e 's/^Link:.*page=//g' -e 's/>.*$//g'
|
||||
@ -15,7 +15,7 @@ tmp="$(mktemp -d)"
|
||||
|
||||
for i in $(seq 1 "$last_page"); do
|
||||
echo "page: $i"
|
||||
curl -H "Authorization: Bearer $GITHUB_TOKEN" -sf "$url?page=$i" >"$tmp/$i.json"
|
||||
curl -H "Authorization: Bearer $GITHUB_TOKEN" -sSf "$url?page=$i" >"$tmp/$i.json"
|
||||
done
|
||||
|
||||
jq '[inputs] | add' "$tmp"/*.json >www/docs/static/releases.json
|
||||
|
Loading…
x
Reference in New Issue
Block a user