-
Notifications
You must be signed in to change notification settings - Fork 3
62 lines (55 loc) · 1.44 KB
/
release.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
name: Build Production Images
on:
workflow_dispatch:
env:
NEXT_PUBLIC_SEO: "True"
jobs:
build-frontend:
uses: ./.github/workflows/build_service.yml
with:
image-name: kioku_frontend
image-tag: prod
path: ./frontend
context: ./frontend
build-carddeck:
uses: ./.github/workflows/build_service.yml
with:
image-name: kioku_carddeck
image-tag: prod
path: ./backend/services/carddeck
context: ./backend
build-user:
uses: ./.github/workflows/build_service.yml
with:
image-name: kioku_user
image-tag: prod
path: ./backend/services/user
context: ./backend
build-frontend-proxy:
uses: ./.github/workflows/build_service.yml
with:
image-name: kioku_frontend_proxy
image-tag: prod
path: ./backend/services/frontend
context: ./backend
build-collaboration:
uses: ./.github/workflows/build_service.yml
with:
image-name: kioku_collaboration
image-tag: prod
path: ./backend/services/collaboration
context: ./backend
build-srs:
uses: ./.github/workflows/build_service.yml
with:
image-name: kioku_srs
image-tag: prod
path: ./backend/services/srs
context: ./backend
build-notification:
uses: ./.github/workflows/build_service.yml
with:
image-name: kioku_notification
image-tag: prod
path: ./backend/services/notification
context: ./backend