From 0332472ac6d94a218ac74c24817dd3ce7dd399ab Mon Sep 17 00:00:00 2001 From: Zibbp Date: Sat, 10 Aug 2024 21:45:08 +0000 Subject: [PATCH] remove temp push logic for beta --- .github/workflows/docker-publish.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index faeca3d..38419ca 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -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 }} @@ -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