-
Notifications
You must be signed in to change notification settings - Fork 27
41 lines (34 loc) · 1.26 KB
/
deploy-preview.yml
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
name: Deploy to Vercel Preview
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_DOCS_ID }}
on:
pull_request:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
show-progress: false
- name: Runner Setup
uses: ./.github/actions/runner-setup
- name: Detecting App Changes
id: changedAction
uses: Trampoline-CX/action-turbo-changed@v1
with:
workspace: "@kadena/docs"
from: origin/${{ github.base_ref }}
- name: Install Vercel CLI
if: steps.changedAction.outputs.changed == 'true'
run: pnpm add --global [email protected]
- name: Pull Vercel Environment Information
if: steps.changedAction.outputs.changed == 'true'
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
- name: Build App for Vercel Deployment
if: steps.changedAction.outputs.changed == 'true'
run: vercel build --token=${{ secrets.VERCEL_TOKEN }} --debug
- name: Deploy Project Artifacts to Vercel
if: steps.changedAction.outputs.changed == 'true'
run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }} --archive=tgz