From 1223aa7b7c650ad08510829f04244f163cb42887 Mon Sep 17 00:00:00 2001 From: NanuIjaz <122975171+NanuIjaz@users.noreply.github.com> Date: Fri, 6 Oct 2023 19:37:22 +0530 Subject: [PATCH] Update build_docker.yml --- .github/workflows/build_docker.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/build_docker.yml b/.github/workflows/build_docker.yml index 482c37ad2af..1488b92af49 100644 --- a/.github/workflows/build_docker.yml +++ b/.github/workflows/build_docker.yml @@ -31,3 +31,15 @@ jobs: push: true file: Dockerfile.submitapi tags: emurgornd/cardano-submit-api:latest,emurgornd/cardano-node:${{ github.ref_name }} + - name: Build and push Cardano node blockproducer + uses: docker/build-push-action@v4 + with: + push: true + file: Dockerfile.blockproducer + tags: emurgornd/cardano-node-block-producer:latest,emurgornd/cardano-node-block-producer:${{ github.ref_name }} + - name: Build and push Cardano node relay + uses: docker/build-push-action@v4 + with: + push: true + file: Dockerfile.relay + tags: emurgornd/cardano-node-relay:latest,emurgornd/cardano-node-relay:${{ github.ref_name }}