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