Skip to content

Commit 1cc3ef7

Browse files
committed
Fix syntax wart
1 parent c0b6ce6 commit 1cc3ef7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ jobs:
3333
name: "Python ${{ matrix.version }} Linux ${{ matrix.target }} on ${{ matrix.host }}"
3434

3535
if: |
36-
( matrix.host == matrix.target && inputs.kind == "native" ) ||
37-
( matrix.host != matrix.target && inputs.kind == "cross" )
36+
${{ ( matrix.host == matrix.target && inputs.kind == 'native' ) ||
37+
( matrix.host != matrix.target && inputs.kind == 'cross' ) }}
3838
3939
runs-on:
40-
- ${{ (contains(matrix.host, "x86_64") && "ubuntu-24.04") || "ubuntu-24.04-arm" }}
40+
- ${{ (contains(matrix.host, 'x86_64') && 'ubuntu-24.04') || 'ubuntu-24.04-arm' }}
4141

4242
env:
4343
RELENV_DATA: ${{ github.workspace }}

0 commit comments

Comments
 (0)