From e838ed0bb8c2959c8217068c9515035f9058d02c Mon Sep 17 00:00:00 2001 From: Techassi Date: Wed, 3 Jan 2024 13:07:21 +0100 Subject: [PATCH] ci: Fix worflow syntax --- .github/workflows/pr_stackablectl.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr_stackablectl.yml b/.github/workflows/pr_stackablectl.yml index 4995798d..bb991efb 100644 --- a/.github/workflows/pr_stackablectl.yml +++ b/.github/workflows/pr_stackablectl.yml @@ -67,13 +67,13 @@ jobs: run: cargo build --target ${{ matrix.target }} -p stackablectl - name: Ensure shell completions up-to-date - if: matrix.os = 'x86_64-unknown-linux-gnu' + if: matrix.os == 'x86_64-unknown-linux-gnu' run: | cargo xtask gen-comp git diff --exit-code - name: Ensure man page is up-to-date - if: matrix.os = 'x86_64-unknown-linux-gnu' + if: matrix.os == 'x86_64-unknown-linux-gnu' run: | cargo xtask gen-man git diff --exit-code