-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (35 loc) · 941 Bytes
/
build.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
name: Build
on: [workflow_call]
env:
API_IMAGE_NAME: alcs-api
MIGRATE_IMAGE_NAME: alcs-migrate
FE_IMAGE_NAME: alcs-frontend
GITOPS_REPO: bcgov-c/tenant-gitops-a5cf88
jobs:
build-api:
uses: ./.github/workflows/_build-image.yml
with:
image-name: alcs-api
build-context: ./services
build-args: NEST_APP=alcs
secrets: inherit
build-frontend:
uses: ./.github/workflows/_build-image.yml
with:
image-name: alcs-frontend
build-context: ./alcs-frontend
secrets: inherit
build-migrate:
uses: ./.github/workflows/_build-image.yml
with:
image-name: alcs-migrate
build-context: ./services
dockerfile: Dockerfile.migrate
build-args: NEST_APP=alcs
secrets: inherit
build-portal-frontend:
uses: ./.github/workflows/_build-image.yml
with:
image-name: alcs-portal-frontend
build-context: ./portal-frontend
secrets: inherit