Skip to content

Commit 5b8dce1

Browse files
committed
Try encapsulating the OR in the same brackets.
1 parent b6c6846 commit 5b8dce1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/post-build-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
run: pip install -r ci/post/requirements.txt
5252

5353
- name: Post Builds (Auto trigger)
54-
if: ${{ github.event_name == 'workflow_call' }} || ${{ github.event_name == 'push' }}
54+
if: ${{ (github.event_name == 'workflow_call') || (github.event_name == 'push') }}
5555
env:
5656
LINUX_RESULT: ${{ inputs.linux_result }}
5757
WINDOWS_RESULT: ${{ inputs.windows_result }}

0 commit comments

Comments
 (0)