ci: Increase await-deploy polling interval

This commit is contained in:
SebastianStork 2026-03-10 18:06:43 +01:00
parent 7c9fdb6719
commit 49c9cf1cfe
Signed by: SebastianStork
SSH key fingerprint: SHA256:tRrGdjYOwgHxpSc/wTOZQZEjxcb15P0tyXRsbAfd+2Q

View file

@ -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()