forked from zed-industries/zed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathredeploy-vercel
More file actions
executable file
·39 lines (29 loc) · 1.22 KB
/
Copy pathredeploy-vercel
File metadata and controls
executable file
·39 lines (29 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env bash
set -euo pipefail
if [[ -z "${VERCEL_TOKEN:-}" ]]; then
echo "Error: VERCEL_TOKEN environment variable is not set."
echo "Get a token from https://vercel.com/account/tokens"
exit 1
fi
MAX_ATTEMPTS="60"
SLEEP_SECONDS="10"
VERCEL_SCOPE="zed-industries"
VERCEL_URL="https://zed.dev"
echo "Checking for in-progress deployments..."
for ((i=1; i<=MAX_ATTEMPTS; i++)); do
RESPONSE=$(curl -s -H "Authorization: Bearer $VERCEL_TOKEN" \
"https://api.vercel.com/v6/deployments?slug=${VERCEL_SCOPE}&state=BUILDING,INITIALIZING,QUEUED&target=production&limit=1")
COUNT=$(echo "$RESPONSE" | jq '.deployments | length')
if [ "$COUNT" = "0" ]; then
echo "No in-progress deployments found. Proceeding with redeploy."
break
fi
if [ "$i" = "$MAX_ATTEMPTS" ]; then
echo "Timed out waiting for deployments to complete after $((MAX_ATTEMPTS * SLEEP_SECONDS)) seconds."
exit 1
fi
echo "Attempt $i/$MAX_ATTEMPTS: Found $COUNT in-progress deployment(s). Waiting ${SLEEP_SECONDS}s..."
sleep "$SLEEP_SECONDS"
done
echo "Triggering redeploy of ${VERCEL_URL}..."
npm exec --yes -- vercel@37 --token="$VERCEL_TOKEN" --scope "$VERCEL_SCOPE" redeploy "$VERCEL_URL"