-
Notifications
You must be signed in to change notification settings - Fork 0
120 lines (103 loc) · 3.71 KB
/
Copy pathdeploy.yml
File metadata and controls
120 lines (103 loc) · 3.71 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
name: Deploy to Vercel
on:
push:
branches:
- main
- development
pull_request:
branches:
- main
- development
jobs:
deploy-frontend:
name: Deploy Frontend to Vercel
runs-on: ubuntu-latest
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_FRONTEND_PROJECT_ID }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
# Vercel Hobby plan only allows deployments where the commit author
# matches the personal account owner. This step rewrites the author
# so Vercel's check passes when deploying from a GitHub org repo.
- name: Override commit author for Vercel Hobby plan
run: |
git config user.email "${{ secrets.VERCEL_OWNER_EMAIL }}"
git config user.name "${{ secrets.VERCEL_OWNER_NAME }}"
git commit --amend --reset-author --no-edit || true
- uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.14
- name: Install Vercel CLI
run: npm install -g vercel
- name: Pull Vercel environment
working-directory: frontend
run: |
if [ "${{ github.ref }}" == "refs/heads/main" ]; then
vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
else
vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
fi
- name: Build
working-directory: frontend
run: |
if [ "${{ github.ref }}" == "refs/heads/main" ]; then
vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
else
vercel build --token=${{ secrets.VERCEL_TOKEN }}
fi
- name: Deploy
working-directory: frontend
run: |
if [ "${{ github.ref }}" == "refs/heads/main" ]; then
vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
else
vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }}
fi
deploy-backend:
name: Deploy Backend to Vercel
runs-on: ubuntu-latest
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_BACKEND_PROJECT_ID }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
# Same commit author override needed for backend deployment
- name: Override commit author for Vercel Hobby plan
run: |
git config user.email "${{ secrets.VERCEL_OWNER_EMAIL }}"
git config user.name "${{ secrets.VERCEL_OWNER_NAME }}"
git commit --amend --reset-author --no-edit || true
- uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.14
- name: Install Vercel CLI
run: npm install -g vercel
- name: Pull Vercel environment
working-directory: backend
run: |
if [ "${{ github.ref }}" == "refs/heads/main" ]; then
vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
else
vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
fi
- name: Build
working-directory: backend
run: |
if [ "${{ github.ref }}" == "refs/heads/main" ]; then
vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
else
vercel build --token=${{ secrets.VERCEL_TOKEN }}
fi
- name: Deploy
working-directory: backend
run: |
if [ "${{ github.ref }}" == "refs/heads/main" ]; then
vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
else
vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }}
fi