Skip to content

Commit

Permalink
feat: add push option do docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
benzino77 committed Jan 7, 2024
1 parent a83b7dd commit 0be38a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-docker-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ 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' }}
run: |
docker buildx build \
--platform linux/amd64,linux/arm64,linux/arm/v7 \
-t benzino77/tasmocompiler:development \
-f Dockerfile .
-f Dockerfile --push .

0 comments on commit 0be38a7

Please sign in to comment.