-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (49 loc) · 1.76 KB
/
cd_preview.yml
File metadata and controls
61 lines (49 loc) · 1.76 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: "[CD] vercel preview deployment"
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on:
push:
branches:
- develop
pull_request:
branches:
- develop
types: [opened, synchronize, reopened]
pull_request_review:
types: [submitted, edited, dismissed]
jobs:
call-sync-main:
name: Call sync-main-branch.yml
uses: dc7devs/dcdev.me/.github/workflows/sync-main-branch.yml@main
if: startsWith(github.event.head_commit.message, 'chore(release)')
# call-release:
# name: Call release.yml
# uses: dc7devs/dcdev.me/.github/workflows/release.yml@main
# secrets: inherit
# needs: call-sync-main
call-lint:
name: Call lint.yml
uses: dc7devs/dcdev.me/.github/workflows/lint.yml@main
preview:
name: Deploy to preview
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20.13.x
- name: Install PNPM
run: npm i -g pnpm
- name: Install vercel CLI
run: |
pnpm install
npm i --global vercel@latest
- name: Pull vercel environment information
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy project artifacts to vercel
run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }}