Skip to content

Commit be55d17

Browse files
Fix workflow_dispatch matrix filter syntax
Remove explicit expression syntax from job-level if condition. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent a9b6f34 commit be55d17

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/build-deps-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
runs-on: ${{ matrix.os }}
3939

40-
if: ${{ inputs.arch == 'both' || inputs.arch == matrix.arch }}
40+
if: inputs.arch == 'both' || inputs.arch == matrix.arch
4141

4242
steps:
4343
- name: Checkout repository

0 commit comments

Comments
 (0)