Skip to content

Commit

Permalink
Refactor Docker deployment workflow to remove unnecessary dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
xhofe committed Oct 16, 2024
1 parent ee9dfad commit 4401bf4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Login to DockerHub
if: github.event_name == 'push'
# if: github.event_name == 'push'
uses: docker/login-action@v3
with:
username: xhofe
Expand All @@ -49,7 +49,7 @@ jobs:
with:
context: .
file: Dockerfile
push: ${{ github.event_name == 'push' }}
# push: ${{ github.event_name == 'push' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64,linux/arm/v7

0 comments on commit 4401bf4

Please sign in to comment.