We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f986e07 commit 12a2691Copy full SHA for 12a2691
2 files changed
.github/workflows/deploy.yml
@@ -39,6 +39,12 @@ jobs:
39
with:
40
path: "./deploy.json"
41
prop_path: "${{ steps.extract_branch.outputs.branch }}.alias"
42
+ - name: "Validate Vercel token"
43
+ run: |
44
+ if [ -z "$VERCEL_TOKEN" ]; then
45
+ echo "VERCEL_TOKEN is not set. Please add it as a GitHub secret."
46
+ exit 1
47
+ fi
48
- name: "Install vercel"
49
run: npm i -g vercel
50
- name: "Deploy to vercel"
.github/workflows/pull-requests.yml
@@ -12,6 +12,12 @@ jobs:
12
- uses: actions/setup-node@v4
13
14
node-version: 18
15
16
17
18
19
20
21
22
23
0 commit comments