diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-05-15 15:14:46 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-05-15 15:14:46 +0200 |
| commit | b90ba7977e57214565678cd1e528bacf64f1a26d (patch) | |
| tree | 100a81c50b637eac479d118c1e7d4fb617c64f3a /.github/workflows/build.yml | |
| parent | 8a772cf16457fb703ad468c3f06b02ca045e5ec4 (diff) | |
ci: Build Docker images for build pipeline
This change updates the CI build pipeline to also build the Docker
images in order to catch any regressions in the deployment process via
Docker.
Diffstat (limited to '.github/workflows/build.yml')
| -rw-r--r-- | .github/workflows/build.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3a4dc27e..9cde7fbe 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -56,3 +56,17 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: ./build/reports/jacoco/codeCoverageReport/codeCoverageReport.xml + build-docker: + name: Build Docker Images + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v3 + - name: Build Runner + uses: docker/build-push-action@v3 + with: + file: opendc-web/opendc-web-runner/Dockerfile + - name: Build API + uses: docker/build-push-action@v3 + with: + file: opendc-web/opendc-web-api/Dockerfile |
