We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0b6ce6 commit 9d118b8Copy full SHA for 9d118b8
.github/workflows/build-cross-action.yml
@@ -32,12 +32,10 @@ jobs:
32
33
name: "Python ${{ matrix.version }} Linux ${{ matrix.target }} on ${{ matrix.host }}"
34
35
- if: |
36
- ( matrix.host == matrix.target && inputs.kind == "native" ) ||
37
- ( matrix.host != matrix.target && inputs.kind == "cross" )
+ if: ${{ ( matrix.host == matrix.target && inputs.kind == 'native' ) || ( matrix.host != matrix.target && inputs.kind == 'cross' ) }}
38
39
runs-on:
40
- - ${{ (contains(matrix.host, "x86_64") && "ubuntu-24.04") || "ubuntu-24.04-arm" }}
+ - ${{ (contains(matrix.host, 'x86_64') && 'ubuntu-24.04') || 'ubuntu-24.04-arm' }}
41
42
env:
43
RELENV_DATA: ${{ github.workspace }}
0 commit comments