From 6daa0d73456091d7d39c592c1015249b95de75bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vi=CC=81ctor=20Falco=CC=81n?= Date: Thu, 26 Mar 2026 15:29:00 +0100 Subject: [PATCH] ci: increase deploy retry delay to exponential backoff --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4a124f54..8d7da503 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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