diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 433724165..3d8e49a99 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -25,6 +25,7 @@ jobs: # list of Docker images to use as base name for tags images: | yoanlin/bbgo + quay.io/yoanlin/bbgo # generate Docker tags based on the following events/attributes tags: | type=schedule @@ -43,6 +44,12 @@ jobs: with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Login to Quay Container Registry + uses: docker/login-action@v2 + with: + registry: quay.io + username: ${{ secrets.QUAY_USERNAME }} + password: ${{ secrets.QUAY_TOKEN }} - name: Build and push id: docker_build uses: docker/build-push-action@v2