From b58ab2fe37a57f07e6f1dcfd04672aaf5b721f69 Mon Sep 17 00:00:00 2001 From: Josh Klar Date: Thu, 3 Aug 2023 10:55:29 -0700 Subject: [PATCH] ci: Fix base image builder... the right way... (#19889) --- .github/workflows/build-base-ruby-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-base-ruby-image.yml b/.github/workflows/build-base-ruby-image.yml index 873787946..3aa8066fc 100644 --- a/.github/workflows/build-base-ruby-image.yml +++ b/.github/workflows/build-base-ruby-image.yml @@ -39,7 +39,7 @@ jobs: id: buildx uses: docker/setup-buildx-action@v2 - name: Login to GitHub Container Registry - if: ${{ github.event_name == 'push' && github.event_name != 'workflow_dispatch' }} + if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }} uses: docker/login-action@v2 with: registry: ghcr.io