Adds stream image push to quay.

This commit is contained in:
Renán Del Valle 2021-11-24 14:04:24 -08:00
parent ca5eaf2654
commit fd9f9235b1
No known key found for this signature in database
GPG key ID: C240AD6D6F443EC9

View file

@ -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
docker push quay.io/katbox/driver:latest
docker push quay.io/katbox/stream:latest