Skip to content

Commit 468ad49

Browse files
committed
chore: add vercel deploy hook workflow
1 parent 4044231 commit 468ad49

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Trigger Vercel Deploy Hook
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
workflow_dispatch:
8+
9+
jobs:
10+
trigger:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Call Vercel Deploy Hook
14+
run: curl -X POST "$VERCEL_DEPLOY_HOOK_URL"
15+
env:
16+
VERCEL_DEPLOY_HOOK_URL: ${{ secrets.VERCEL_DEPLOY_HOOK_URL }}

0 commit comments

Comments
 (0)