We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9b7e48 commit 277fb11Copy full SHA for 277fb11
1 file changed
action.yml
@@ -6,7 +6,7 @@ runs:
6
using: composite
7
steps:
8
- name: Check platform compability
9
- if: ${{ !(runner.os == 'Windows' && runner.arch == 'X64') || (runner.os == 'Linux' && (runner.arch == 'X64' || runner.arch == 'ARM64')) }}
+ if: ${{ !((runner.os == 'Windows' && runner.arch == 'X64') || (runner.os == 'Linux' && (runner.arch == 'X64' || runner.arch == 'ARM64'))) }}
10
shell: bash
11
run: |
12
echo "Not supported combination of OS & Arch: ${{ runner.os }} & ${{ runner.arch }}"
0 commit comments