From 49c9cf1cfe52758b5412b22ef1f7402f9bac7feb Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Tue, 10 Mar 2026 18:06:43 +0100 Subject: [PATCH] ci: Increase `await-deploy` polling interval --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 81c2e78..4b94f62 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -130,12 +130,12 @@ jobs: deployed_sha=$(git ls-remote "$repo_url" "$branch" | cut -f1) if [[ "$deployed_sha" == "$expected_sha" ]]; then - echo "✅ ${{ matrix.server }} deployed $expected_sha" + echo "Deployed $expected_sha" exit 0 fi - - echo "⏳ ${{ matrix.server }}: deployed ${deployed_sha::7}, waiting for ${expected_sha::7}..." - sleep 5 + + echo "Deployed ${deployed_sha::7}, waiting for ${expected_sha::7}..." + sleep 10 done notify: if: always()