From e3a1df4aa64bf87c32848be0d5c5e5ce16968186 Mon Sep 17 00:00:00 2001 From: Jorijn Schrijvershof Date: Mon, 5 Jan 2026 08:41:58 +0100 Subject: [PATCH] fix(ci): skip smoke test when manual push is disabled --- .github/workflows/docker-publish.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 877eebc..ded5599 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -212,8 +212,9 @@ jobs: continue-on-error: true # Smoke test - verify image runs correctly + # Skip for manual runs when push is disabled (image not available to pull) - name: Smoke test - if: "!(github.event_name == 'schedule' && steps.get-version.outputs.skip == 'true')" + if: "!(github.event_name == 'schedule' && steps.get-version.outputs.skip == 'true') && !(github.event_name == 'workflow_dispatch' && inputs.push == false)" run: | IMAGE_TAG="${{ steps.image-tag.outputs.tag }}"