From 0be38a7fc9ece2dacf78f9e24ed1d8d084cdbe9e Mon Sep 17 00:00:00 2001 From: Piotr Antczak Date: Sun, 7 Jan 2024 15:29:40 +0100 Subject: [PATCH] feat: add push option do docker build --- .github/workflows/build-docker-image.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-docker-image.yaml b/.github/workflows/build-docker-image.yaml index 359664a7..49a417bf 100644 --- a/.github/workflows/build-docker-image.yaml +++ b/.github/workflows/build-docker-image.yaml @@ -48,7 +48,7 @@ jobs: --platform linux/amd64,linux/arm64,linux/arm/v7 \ -t benzino77/tasmocompiler:$DOCKER_TAG \ -t benzino77/tasmocompiler:latest \ - -f Dockerfile . + -f Dockerfile --push . - name: Build and push development Docker image if: ${{ github.event.inputs.branch == 'development' }} @@ -56,4 +56,4 @@ jobs: docker buildx build \ --platform linux/amd64,linux/arm64,linux/arm/v7 \ -t benzino77/tasmocompiler:development \ - -f Dockerfile . + -f Dockerfile --push .