Skip to content

Commit

Permalink
Merge pull request #102 from xstefank/fix-workflow-dispatch
Browse files Browse the repository at this point in the history
Allow workflow_dispatch to not skip image-push
  • Loading branch information
xstefank authored Feb 28, 2024
2 parents c5fecb9 + 4b083f9 commit 5abf2dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/image-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5abf2dd

Please sign in to comment.