Skip to content

Commit 83ecb01

Browse files
committed
Fix GitHub Actions workflow - use github.event.inputs for workflow_dispatch
1 parent 2fb63a8 commit 83ecb01

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ jobs:
4343
runs-on: ${{ matrix.os }}
4444
if: >-
4545
github.event_name == 'push' ||
46-
inputs.platform == 'all' ||
47-
inputs.platform == matrix.name
46+
github.event.inputs.platform == 'all' ||
47+
github.event.inputs.platform == matrix.name
4848
4949
steps:
5050
- name: Checkout

0 commit comments

Comments
 (0)