From 1a0570550e5be5e34e103fb49a00d4c57b4770b2 Mon Sep 17 00:00:00 2001 From: Dmitry Baryshkov Date: Mon, 6 Nov 2023 13:25:16 +0200 Subject: [PATCH] CI: fix the if condition to make it work properly Signed-off-by: Dmitry Baryshkov --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b81dfe9..265b5aa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: apt -y install --no-install-recommends meson build-essential - name: Install cross-compilers - if:${{ matrix.target }} != 'native' + if: matrix.target != 'native' run: | apt -y install gcc-${{ matrix.target }} FAMILY=$(echo ${{ matrix.target }} | cut -d- -f 1)