Skip to content

Commit

Permalink
api gateway workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cheehongw committed Nov 14, 2023
1 parent b2ffaef commit 2e34146
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build_push_registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ jobs:
- 'collab_service/**'
code_execution:
- 'code_execution/**'
api_gateway:
- 'api_gateway/**'
- name: 'Create env file'
Expand Down Expand Up @@ -99,6 +101,13 @@ jobs:
docker-compose build code-execution
docker-compose push code-execution
- name: 7. Build and Push api-gateway
id: g
if: steps.changes.outputs.api_gateway == 'true'
run: |
docker-compose build api-gateway
docker-compose push api-gateway
- name: determine deploy step
id: deploy
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' }}
Expand Down

0 comments on commit 2e34146

Please sign in to comment.