Skip to content

Commit 2e34146

Browse files
committed
api gateway workflow
1 parent b2ffaef commit 2e34146

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/build_push_registry.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ jobs:
3535
- 'collab_service/**'
3636
code_execution:
3737
- 'code_execution/**'
38+
api_gateway:
39+
- 'api_gateway/**'
3840
3941
4042
- name: 'Create env file'
@@ -99,6 +101,13 @@ jobs:
99101
docker-compose build code-execution
100102
docker-compose push code-execution
101103
104+
- name: 7. Build and Push api-gateway
105+
id: g
106+
if: steps.changes.outputs.api_gateway == 'true'
107+
run: |
108+
docker-compose build api-gateway
109+
docker-compose push api-gateway
110+
102111
- name: determine deploy step
103112
id: deploy
104113
if: ${{ steps.a.conclusion == 'success' || steps.b.conclusion == 'success' || steps.c.conclusion == 'success' || steps.d.conclusion == 'success' || steps.e.conclusion == 'success' || steps.f.conclusion == 'success' }}

0 commit comments

Comments
 (0)