From 57ac666598308dea57c3eb56b2a564164dd68abf Mon Sep 17 00:00:00 2001 From: Benson Wong Date: Sun, 19 Apr 2026 13:56:26 -0700 Subject: [PATCH] .github/workflows: tweak push ghcr conditional (#676) --- .github/workflows/unified-docker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unified-docker.yml b/.github/workflows/unified-docker.yml index 4819a4e3..2dd8e62c 100644 --- a/.github/workflows/unified-docker.yml +++ b/.github/workflows/unified-docker.yml @@ -97,7 +97,7 @@ jobs: uses: docker/setup-buildx-action@v3 - name: Log in to GitHub Container Registry - if: ${{ !env.ACT && (github.event_name == 'schedule' || inputs.push_to_ghcr == true) }} + if: ${{ !env.ACT }} uses: docker/login-action@v3 with: registry: ghcr.io @@ -121,7 +121,7 @@ jobs: docker/unified/build-image.sh --${{ matrix.backend }} - name: Push to GitHub Container Registry - if: ${{ !env.ACT && (github.event_name == 'schedule' || inputs.push_to_ghcr == true) }} + if: ${{ !env.ACT && inputs.push_to_ghcr == true }} run: | BASE_TAG="ghcr.io/mostlygeek/llama-swap:unified-${{ matrix.backend }}" DATE_TAG=$(date -u +%Y-%m-%d)