We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3addaae commit b5c5722Copy full SHA for b5c5722
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