-
-
Notifications
You must be signed in to change notification settings - Fork 88
339 lines (309 loc) · 10.7 KB
/
prod-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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
name: 'Deploy (Production)'
on:
workflow_dispatch:
inputs:
deploy-backend:
type: boolean
description: Deploy backend to Railway
deploy-frontend:
type: boolean
description: Deploy frontend
deploy-website:
type: boolean
description: Deploy website
concurrency:
group: deploy-${{ github.head_ref }}
cancel-in-progress: true
jobs:
install:
runs-on: ubuntu-latest
steps:
- name: Checkout PR
uses: actions/checkout@v4
- name: 📥 Setup
uses: ./.github/actions/setup-job
- name: 📥 Monorepo install
uses: ./.github/actions/pnpm-install
lint:
name: Lint
needs: ['install']
runs-on: ubuntu-latest
steps:
- name: Checkout PR
uses: actions/checkout@v4
- name: 📥 Setup
uses: ./.github/actions/setup-job
- name: 📥 Monorepo install
uses: ./.github/actions/pnpm-install
- name: '[API] Generate Prisma Migration'
run: |
pnpm --filter=@codeimage/api exec prisma generate
pnpm --filter=@codeimage/prisma-models build
- name: Lint
run: pnpm lint
build-packages:
name: Build packages/**
needs: ['install']
runs-on: ubuntu-latest
steps:
- name: Checkout PR
uses: actions/checkout@v4
- name: 📥 Setup
uses: ./.github/actions/setup-job
- name: 📥 Monorepo install
uses: ./.github/actions/pnpm-install
- name: '[API] Generate Prisma Migration'
run: |
pnpm --filter=@codeimage/api exec prisma generate
pnpm --filter=@codeimage/prisma-models build
- name: 'Build packages'
run: |
pnpm libs:build
- name: Cache packages
uses: actions/cache@v4
with:
path: packages
key: packages-dist-${{ github.run_id }}-${{ github.run_number }}
build-api:
name: 'Build @codeimage/api'
needs: ['install']
runs-on: ubuntu-latest
steps:
- name: Checkout PR
uses: actions/checkout@v4
- name: 📥 Setup
uses: ./.github/actions/setup-job
- name: 📥 Monorepo install
uses: ./.github/actions/pnpm-install
- name: '[API] Generate Prisma Migration'
run: |
pnpm --filter=@codeimage/api exec prisma generate
pnpm --filter=@codeimage/prisma-models build
- name: Build
run: |
pnpm --filter=@codeimage/api build:ts
pnpm prepare:api:deploy
- name: Cache build
uses: actions/cache@v4
with:
path: |
dist/api-bundle/**
key: rest-api-bundle-${{ github.run_id }}-${{ github.run_number }}
restore-keys: rest-api-bundle-${{ github.run_id }}-${{ github.run_number }}
test-api:
name: Api test
needs: [install]
runs-on: ubuntu-latest
services:
postgres:
image: postgres:13-alpine
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: test_codeimage
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
env:
DATABASE_URL: postgresql://postgres:postgres@localhost:5432/test_codeimage
DOMAIN_AUTH0: https://example.it
CLIENT_ID_AUTH0: <client-id-auth>
CLIENT_SECRET_AUTH0: <client-secret-auth>
AUTH0_CLIENT_CLAIMS: https://example.com
AUDIENCE_AUTH0: https://example.com
GRANT_TYPE_AUTH0: client_credentials
MOCK_AUTH: false
MOCK_AUTH_EMAIL: [email protected]
ALLOWED_ORIGINS: '*'
steps:
- name: Checkout PR
uses: actions/checkout@v4
- name: 📥 Setup
uses: ./.github/actions/setup-job
- name: 📥 Monorepo install
uses: ./.github/actions/pnpm-install
- name: 'Run prisma DB migrations'
run: |
cd apps/api
pnpm exec prisma migrate deploy
pnpm exec prisma generate
pnpm --filter=@codeimage/prisma-models build
- name: Test (unit)
run: pnpm --filter=@codeimage/api test:unit
- name: Test (integration)
run: pnpm --filter=@codeimage/api test:integration
typecheck-packages:
name: Type-checking packages/**
needs: ['install', 'build-packages']
runs-on: ubuntu-latest
steps:
- name: Checkout PR
uses: actions/checkout@v4
- name: 📥 Setup
uses: ./.github/actions/setup-job
- name: 📥 Monorepo install
uses: ./.github/actions/pnpm-install
- name: Restore packages
uses: actions/cache@v4
with:
path: packages
key: packages-dist-${{ github.run_id }}-${{ github.run_number }}
- name: Typecheck packages
run: |
pnpm --filter='./packages/**' --recursive typecheck:ci
- name: Typecheck apps
run: |
pnpm --filter='@codeimage/api' typecheck:ci
pnpm --filter='@codeimage/app' typecheck
deploy-highlight-package:
name: Deploy @codeimage/highlight app
environment: Production
needs: ['install', 'lint', 'build-packages']
runs-on: ubuntu-latest
steps:
- name: Checkout PR
uses: actions/checkout@v4
- name: 📥 Setup
uses: ./.github/actions/setup-job
- name: 📥 Monorepo install
uses: ./.github/actions/pnpm-install
- name: Restore packages
uses: actions/cache@v4
with:
path: packages
key: packages-dist-${{ github.run_id }}-${{ github.run_number }}
- name: Build @codeimage/highlight/dev
env:
ENABLE_VERCEL_BUILD: true
run: |
pnpm --filter=@codeimage/highlight build:dev
- uses: amondnet/[email protected]
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
github-token: ${{ secrets.GITHUB_TOKEN }}
working-directory: packages/highlight/dev
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }}
vercel-project-id: ${{ secrets.VERCEL_HIGHLIGHT_DEV_PROJECT_ID }}
vercel-args: '--prebuilt --prod'
deploy-api:
name: Build and Deploy Api
environment: Production
needs: [install, lint, typecheck-packages, test-api, build-api]
runs-on: ubuntu-latest
steps:
- name: Checkout PR
uses: actions/checkout@v4
- name: 📥 Setup
uses: ./.github/actions/setup-job
- name: 📥 Monorepo install
uses: ./.github/actions/pnpm-install
- name: Restore packages
uses: actions/cache@v4
with:
path: packages
key: packages-dist-${{ github.run_id }}-${{ github.run_number }}
- name: Restore api build
uses: actions/cache@v4
with:
path: |
dist/api-bundle/**
key: rest-api-bundle-${{ github.run_id }}-${{ github.run_number }}
- name: Run prod migrations
if: ${{ github.event.inputs.deploy-backend == 'true' }}
run: |
pnpm --filter=@codeimage/api exec prisma migrate deploy
env:
DATABASE_URL: ${{ secrets.NEXT_DATABASE_URL }}
RAILWAY_TOKEN: ${{ secrets.RAILWAY_TOKEN }}
- name: Deploy to Railway
run: |
find -type f -name '.gitignore' -delete
pnpm railway link --environment production $RAILWAY_API_PROJECT_ID
cd dist/api-bundle
pnpm railway up -s codeimage
env:
RAILWAY_TOKEN: ${{ secrets.RAILWAY_TOKEN }}
RAILWAY_API_PROJECT_ID: ${{ secrets.RAILWAY_API_PROJECT_ID }}
deploy-app:
name: Deploy @codeimage/app
environment: Production
needs: [install, lint, typecheck-packages, build-packages, deploy-api]
runs-on: ubuntu-latest
steps:
- name: Checkout PR
uses: actions/checkout@v4
- name: 📥 Setup
uses: ./.github/actions/setup-job
- name: 📥 Monorepo install
uses: ./.github/actions/pnpm-install
- name: Restore packages
uses: actions/cache@v4
with:
path: packages
key: packages-dist-${{ github.run_id }}-${{ github.run_number }}
- name: Build @codeimage/app
env:
VITE_PUBLIC_AUTH0_DOMAIN: ${{ secrets.VITE_PUBLIC_AUTH0_DOMAIN }}
VITE_PUBLIC_AUTH0_CLIENT_ID: ${{ secrets.VITE_PUBLIC_AUTH0_CLIENT_ID }}
VITE_PUBLIC_AUTH0_AUDIENCE: ${{ secrets.VITE_PUBLIC_AUTH0_AUDIENCE }}
VITE_API_BASE_URL: ${{ secrets.VITE_API_BASE_URL }}
VITE_ENABLE_MSW: ${{ env.IS_NEXT_BRANCH == 'false' }}
VITE_PRESET_LIMIT: 10
VITE_PRESET_LIMIT_GUEST: 5
UMAMI_SCRIPT_SRC: ${{ secrets.UMAMI_SCRIPT_SRC }}
UMAMI_WEBSITE_ID: ${{ secrets.UMAMI_WEBSITE_ID }}
ENABLE_VERCEL_BUILD: true
run: |
pnpm --filter=@codeimage/app build
- uses: amondnet/[email protected]
if: ${{ github.event.inputs.deploy-frontend == 'true' }}
name: Deploy
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }} # Required
github-token: ${{ secrets.GITHUB_TOKEN }} #Optional
vercel-args: '--prebuilt --prod' #Optional
working-directory: apps/codeimage
vercel-org-id: ${{ secrets.VERCEL_ORG_ID}} #Required
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }} #Required
alias-domains: | #Optional
app.codeimage.dev
deploy-website:
if: ${{ github.event.inputs.deploy-website == 'true' }}
name: Deploy @codeimage/website
environment: Production
needs: [install, lint, typecheck-packages, build-packages]
runs-on: ubuntu-latest
steps:
- name: Checkout PR
uses: actions/checkout@v4
- name: 📥 Setup
uses: ./.github/actions/setup-job
- name: 📥 Monorepo install
uses: ./.github/actions/pnpm-install
- name: Restore packages
uses: actions/cache@v4
with:
path: packages
key: packages-dist-${{ github.run_id }}-${{ github.run_number }}
- name: Build
env:
VITE_UMAMI_SCRIPT_SRC: ${{ secrets.UMAMI_LANDING_SCRIPT_SRC }}
VITE_UMAMI_WEBSITE_ID: ${{ secrets.UMAMI_LANDING_WEBSITE_ID }}
VITE_PUBLIC_AUTH0_DOMAIN: ${{ secrets.VITE_PUBLIC_AUTH0_DOMAIN }}
VITE_PUBLIC_AUTH0_CLIENT_ID: ${{ secrets.VITE_PUBLIC_AUTH0_CLIENT_ID }}
VITE_PUBLIC_AUTH0_AUDIENCE: ${{ secrets.VITE_PUBLIC_AUTH0_AUDIENCE }}
run: |
pnpm --filter=@codeimage/website build
- name: Publish on Netlify
run: |
pnpm i -g [email protected]
cd apps/website
pnpm exec netlify link
pnpm exec netlify deploy --prod --dir=dist/public
env:
NETLIFY_SITE_ID: ${{ secrets.WEBSITE_NETLIFY_SITE_ID }}
NETLIFY_AUTH_TOKEN: ${{ secrets.WEBSITE_NETLIFY_AUTH_TOKEN }}