scripts: continious_upload: retry if upload failed
This commit is contained in:
parent
cc6838ec97
commit
f8cf2c8953
1 changed files with 15 additions and 6 deletions
|
@ -263,13 +263,22 @@ urlencode() {
|
|||
for FILE in "$@" ; do
|
||||
FULLNAME="${FILE}"
|
||||
BASENAME="$(basename "${FILE}")"
|
||||
curl -H "Authorization: token ${GITHUB_TOKEN}" \
|
||||
|
||||
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")"
|
||||
"$upload_url?name=$(urlencode "$BASENAME")"; then
|
||||
break
|
||||
fi
|
||||
|
||||
sleep 1m # try to avoid ratelimits???
|
||||
echo ""
|
||||
done
|
||||
done
|
||||
|
||||
$shatool "$@"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue