From fd9f9235b10d278244a13a2ef23b2ae2497ff987 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A1n=20Del=20Valle?= Date: Wed, 24 Nov 2021 14:04:24 -0800 Subject: [PATCH] Adds stream image push to quay. --- .github/workflows/create-push-image.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/create-push-image.yml b/.github/workflows/create-push-image.yml index 643cc2a..8f4f8ff 100644 --- a/.github/workflows/create-push-image.yml +++ b/.github/workflows/create-push-image.yml @@ -21,12 +21,14 @@ jobs: uses: actions/setup-go@v2 with: go-version: 1.17 - - name: Build - run: make + - name: Build Driver and Stream + run: make build build-stream - name: Build all of the container images run: | docker build . --tag quay.io/katbox/driver:latest --no-cache + docker build . -f ./stream/Dockerfile --tag quay.io/katbox/stream:latest --no-cache - name: Push the images if: github.ref == 'refs/heads/main' run: | - docker push quay.io/katbox/driver:latest \ No newline at end of file + docker push quay.io/katbox/driver:latest + docker push quay.io/katbox/stream:latest