Skip to content

Commit

Permalink
fix(ci): fix if condition
Browse files Browse the repository at this point in the history
  • Loading branch information
MSevey committed Mar 25, 2024
1 parent e3b88e8 commit 9f445d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/reusable_dockerfile_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,8 @@ jobs:
# Don't run if both logic flags are false. This is the case for push events
# on PR commits.
if: |
needs.prepare-env.outputs.build_for_pr != 'false'
&& needs.prepare-env.outputs.build_for_merge != 'false'
needs.prepare-env.outputs.build_for_pr == 'false'
&& needs.prepare-env.outputs.build_for_merge == 'false'
permissions:
contents: write
packages: write
Expand Down

0 comments on commit 9f445d6

Please sign in to comment.