Skip to content

Commit 3ff9fe1

Browse files
[GHA] fix condition for example (#3136)
### Reason for changes `!github.event.inputs.skip_windows` always false
1 parent dffca12 commit 3ff9fe1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/examples.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
examples-win-cpu:
7676
name: Test exmaples CPU Windows [${{ matrix.group }}/4]
7777
runs-on: windows-2019-16-core
78-
if: ${{ github.event_name != 'workflow_dispatch' || !github.event.inputs.skip_windows }}
78+
if: ${{ github.event_name != 'workflow_dispatch' || github.event.inputs.skip_windows == 'false' }}
7979
strategy:
8080
fail-fast: false
8181
matrix:

0 commit comments

Comments
 (0)