summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2022-07-30 12:22:45 +0200
committerFabian Mastenbroek <mail.fabianm@gmail.com>2022-08-03 13:55:58 +0200
commit1724ab032deedea0a9c54e827829632a9ba066aa (patch)
treeb875f0147ceed7014b369b3e38eedfc75bdad569 /.github/workflows
parentec39ad82a9257c3aae11ef60c0c81a1362b73ead (diff)
ci: Build Docker image for OpenDC web UI
This change adds a build step for building the OpenDC web UI as Docker image. We forgot this step and found that the image failed to build during previous commits.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml9
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 3f6ca4dd..324866e0 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
+ 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-runner/Dockerfile