mirror of
https://github.com/w23/xash3d-fwgs
synced 2024-12-15 13:41:33 +01:00
scripts: continious_upload: retry if upload failed
This commit is contained in:
parent
cc6838ec97
commit
f8cf2c8953
@ -263,12 +263,21 @@ urlencode() {
|
||||
for FILE in "$@" ; do
|
||||
FULLNAME="${FILE}"
|
||||
BASENAME="$(basename "${FILE}")"
|
||||
curl -H "Authorization: token ${GITHUB_TOKEN}" \
|
||||
-H "Accept: application/vnd.github.manifold-preview" \
|
||||
-H "Content-Type: application/octet-stream" \
|
||||
--data-binary "@$FULLNAME" \
|
||||
"$upload_url?name=$(urlencode "$BASENAME")"
|
||||
echo ""
|
||||
|
||||
for retries in {1..10}; do
|
||||
echo "Upload attempt $retries"
|
||||
|
||||
if curl -H "Authorization: token ${GITHUB_TOKEN}" \
|
||||
-H "Accept: application/vnd.github.manifold-preview" \
|
||||
-H "Content-Type: application/octet-stream" \
|
||||
--data-binary "@$FULLNAME" \
|
||||
"$upload_url?name=$(urlencode "$BASENAME")"; then
|
||||
break
|
||||
fi
|
||||
|
||||
sleep 1m # try to avoid ratelimits???
|
||||
echo ""
|
||||
done
|
||||
done
|
||||
|
||||
$shatool "$@"
|
||||
|
Loading…
Reference in New Issue
Block a user