From 0bafe44e90a52bf50ad50d1c129f552434890b27 Mon Sep 17 00:00:00 2001 From: Matthew Young <86373761+myoung301@users.noreply.github.com> Date: Tue, 11 Jun 2024 13:29:55 -0500 Subject: [PATCH] Change syntax of step if condition https://github.com/actions/runner/issues/1483 --- build-wheelhouse/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-wheelhouse/action.yml b/build-wheelhouse/action.yml index ebd456b3f..616961373 100644 --- a/build-wheelhouse/action.yml +++ b/build-wheelhouse/action.yml @@ -99,7 +99,7 @@ runs: steps: - name: "Install Git and clone project" - if: inputs.checkout == true + if: ${{ inputs.checkout }} uses: actions/checkout@v4 - name: "Set up Python ${{ inputs.python-version }}"