workflows/docker: reduce delay to 15 seconds

Signed-off-by: Patrick Linnane <patrick@linnane.io>
This commit is contained in:
Patrick Linnane 2025-04-22 09:15:10 -07:00
parent 7ad5460336
commit ead6c13cf2
No known key found for this signature in database

View File

@ -314,7 +314,7 @@ jobs:
exit 1
fi
delay=$((2 ** attempts))
if [[ $delay -gt 60 ]]; then delay=60; fi
if [[ $delay -gt 15 ]]; then delay=15; fi
echo "Push failed (attempt $attempts). Retrying in ${delay} seconds..."
sleep ${delay}
done