Skip to content

Commit 997ff5f

Browse files
committed
Fix syntax wart
1 parent c0b6ce6 commit 997ff5f

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/build-cross-action.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,10 @@ jobs:
3232

3333
name: "Python ${{ matrix.version }} Linux ${{ matrix.target }} on ${{ matrix.host }}"
3434

35-
if: |
36-
( matrix.host == matrix.target && inputs.kind == "native" ) ||
37-
( matrix.host != matrix.target && inputs.kind == "cross" )
35+
# if: ${{ ( matrix.host == matrix.target && inputs.kind == 'native' ) || ( matrix.host != matrix.target && inputs.kind == 'cross' ) }}
3836

3937
runs-on:
40-
- ${{ (contains(matrix.host, "x86_64") && "ubuntu-24.04") || "ubuntu-24.04-arm" }}
38+
- ${{ (contains(matrix.host, 'x86_64') && 'ubuntu-24.04') || 'ubuntu-24.04-arm' }}
4139

4240
env:
4341
RELENV_DATA: ${{ github.workspace }}

0 commit comments

Comments
 (0)