diff options
Diffstat (limited to '.github/workflows/build.yml')
| -rw-r--r-- | .github/workflows/build.yml | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2507de64..64eba648 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -62,11 +62,16 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v3 - - name: Build Runner + - name: Build UI uses: docker/build-push-action@v3 with: - file: opendc-web/opendc-web-runner/Dockerfile - - name: Build API + context: opendc-web/opendc-web-ui + file: opendc-web/opendc-web-ui/Dockerfile + - name: Build Web Server + uses: docker/build-push-action@v3 + with: + file: opendc-web/opendc-web-server/Dockerfile + - name: Build Runner uses: docker/build-push-action@v3 with: - file: opendc-web/opendc-web-api/Dockerfile + file: opendc-web/opendc-web-runner/Dockerfile |
