From 08a0398e37c59067ca67a088d499810ff85ad36d Mon Sep 17 00:00:00 2001 From: "Gerber, Mike" Date: Wed, 8 Feb 2023 14:44:17 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20github:=20Build=20a=20second=20c?= =?UTF-8?q?ontainer=20image?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 920e0b0..865cc62 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,11 +26,24 @@ jobs: # TODO matrix for all Dockerfiles - - name: Build + name: Build core uses: docker/build-push-action@v4 with: context: . file: Dockerfile-core build-args: DRONE_COMMIT=${{ github.sha }} - push: false + push: true + tags: + - ${{ github.sha }} + - + name: Build dinglehopper + uses: docker/build-push-action@v4 + with: + context: . + file: Dockerfile-dinglehopper + build-args: + DRONE_COMMIT=${{ github.sha }} + push: true + tags: + - ${{ github.sha }}