Skip to content

Commit b5c5722

Browse files
committed
Fix OS & Arch condition
1 parent 3addaae commit b5c5722

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ runs:
66
using: composite
77
steps:
88
- name: Check platform compability
9-
if: ${{ !(runner.os == 'Windows' && runner.arch == 'X64') || (runner.os == 'Linux' && (runner.arch == 'X64' || runner.arch == 'ARM64')) }}
9+
if: ${{ !((runner.os == 'Windows' && runner.arch == 'X64') || (runner.os == 'Linux' && (runner.arch == 'X64' || runner.arch == 'ARM64'))) }}
1010
shell: bash
1111
run: |
1212
echo "Not supported combination of OS & Arch: ${{ runner.os }} & ${{ runner.arch }}"

0 commit comments

Comments
 (0)