Skip to content
This repository was archived by the owner on Jan 15, 2024. It is now read-only.

Commit ae98424

Browse files
authored
SELFDEV-216: [dev] add deploy hook and GH action (#1335)
1 parent 6c3c19b commit ae98424

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/deploy.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Deploy
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v2
15+
16+
- name: Trigger Vercel Deploy Hook
17+
run: |
18+
curl -X POST ${{ secrets.VERCEL_DEPLOY_HOOK_URL }}

0 commit comments

Comments
 (0)