From 4b083f9e8715dcf3e2385c20dbc8b9cf8d531c73 Mon Sep 17 00:00:00 2001 From: xstefank Date: Wed, 28 Feb 2024 16:08:32 +0100 Subject: [PATCH] Allow workflow_dispatch to not skip image-push --- .github/workflows/image-push.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/image-push.yml b/.github/workflows/image-push.yml index c93febb..7f4bbf7 100644 --- a/.github/workflows/image-push.yml +++ b/.github/workflows/image-push.yml @@ -12,7 +12,7 @@ jobs: build: runs-on: ubuntu-latest name: Push image to quay.io - if: ${{ contains(github.event.head_commit.message, 'narayana-bom') || contains(github.event.head_commit.message, 'quarkus.platform.version') }} + if: ${{ contains(github.event.head_commit.message, 'narayana-bom') || contains(github.event.head_commit.message, 'quarkus.platform.version') || github.event.name == 'workflow_dispatch' }} steps: - uses: actions/checkout@v2