fix(ci): skip smoke test when manual push is disabled

This commit is contained in:
Jorijn Schrijvershof
2026-01-05 08:41:58 +01:00
parent f7f3889e41
commit e3a1df4aa6

View File

@@ -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 }}"