From 5b47533be831fe0b110afbcf80eaae8093382f09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20Negrier=20Duarte?= Date: Sun, 7 Apr 2024 11:42:06 +0100 Subject: [PATCH] Github Action: Fix condition on Manual Action MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Gonçalo Negrier Duarte --- .github/workflows/extra.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/extra.yaml b/.github/workflows/extra.yaml index add963e..444dd84 100644 --- a/.github/workflows/extra.yaml +++ b/.github/workflows/extra.yaml @@ -39,11 +39,11 @@ jobs: # Use to test kernel patch build if needed release-kernel-patch: runs-on: ubuntu-latest + if: ${{ github.event.inputs.BUILD_KERNEL_PATCH }} == 'true' steps: - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Build kernel patch - if: ${{ github.event.inputs.BUILD_KERNEL_PATCH }} == 'true' run: ./deploy/build_kernelpatch.sh shell: bash