Skip to content

Commit

Permalink
[patch-200] Extend workflow conditional logic.
Browse files Browse the repository at this point in the history
  • Loading branch information
GROwen committed Oct 12, 2023
1 parent d729cb4 commit c798666
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
REGISTRY: ghcr.io
jobs:
buildx:
if: github.event.pull_request.merged == true || startsWith(github.head_ref, 'build/') || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
if: github.event.pull_request.merged == true || (github.event_name == 'push' && startsWith(github.head_ref, 'build')) || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down

0 comments on commit c798666

Please sign in to comment.