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