Skip to content

Commit

Permalink
remove temp push logic for beta
Browse files Browse the repository at this point in the history
  • Loading branch information
Zibbp committed Aug 10, 2024
1 parent 28e7d30 commit 0332472
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

# Login into GitHub Container Registry except on PR
- name: Log into registry ${{ env.REGISTRY }}
# if: github.event_name != 'pull_request' TODO: remove this line
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
Expand All @@ -57,8 +57,7 @@ jobs:
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
push: true # TODO: remove this line
# push: ${{ github.event_name != 'pull_request' }}
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
context: .
dockerfile: ./Dockerfile

0 comments on commit 0332472

Please sign in to comment.