-
Notifications
You must be signed in to change notification settings - Fork 5
43 lines (36 loc) · 1.05 KB
/
deploy.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
42
43
name: Deploy to Vercel
on:
push:
branches:
- main
- dev
pull_request:
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
environment:
name: ${{ github.ref_name == 'main' && 'Prod' || 'Dev' }}
steps:
- uses: actions/checkout@v3
- name: Install node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install dependencies
run: yarn --prefer-offline
id: install
- name: Build project dependencies
run: yarn run build
id: build
env:
VITE_RPC_URL: ${{ secrets.VITE_RPC_URL }}
- uses: amondnet/vercel-action@v25
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }} # Required
vercel-org-id: ${{ secrets.ORG_ID}} #Required
scope: ${{ secrets.ORG_ID}} #Required
vercel-args: ${{ github.ref_name == 'main' && '--prod' || '' }}
vercel-project-id: ${{ secrets.PROJECT_ID}} #Required
working-directory: ./dist