ci: increase deploy retry delay to exponential backoff

This commit is contained in:
Víctor Falcón 2026-03-26 15:29:00 +01:00
parent bb65bdc16e
commit 6daa0d7345
1 changed files with 1 additions and 1 deletions

View File

@ -329,7 +329,7 @@ jobs:
echo "Deployment request failed with status $http_code"
if [ $attempt -lt $max_attempts ]; then
delay=$((attempt * 10))
delay=$((30 * (2 ** (attempt - 1))))
echo "Retrying in ${delay}s..."
sleep $delay
fi