Skip to content

Commit 83666db

Browse files
authored
Fix a bad conditional in packaging workflow. (#232)
* Fix workflow conditional.
1 parent 53e58ad commit 83666db

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/cpp-packaging.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ jobs:
5050
fi
5151
5252
- name: log if skipping integration tests
53-
if: !(github.event.inputs.skipIntegrationTests == 0 || github.event.inputs.skipIntegrationTests == '')
53+
if: |
54+
github.event.inputs.skipIntegrationTests != 0 && github.event.inputs.skipIntegrationTests != ''
5455
run: echo "::warning ::Skipping integration tests."
5556

5657
- name: log if preserving intermediate artifacts

0 commit comments

Comments
 (0)