From aa089182f268c0255577cdc57a82a9b0819d59c3 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sat, 13 Jan 2024 15:57:48 +0000 Subject: [PATCH] ci: fix conditional --- .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 5fc202d..c9120aa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,7 +63,7 @@ jobs: run: echo '${{steps.toolchain.outputs.rustup-version}}' - name: Check lack of toolchain input or file results in stable - if: !matrix.write-toolchain-file && matrix.rust == null + if: matrix.write-toolchain-file == false && matrix.rust == null shell: bash run: |- rustcv="$(rustc --version)"