From 8c4e8a60ea9f8790caa90e5652f61fd0453cfdac Mon Sep 17 00:00:00 2001 From: Paul Profizi <100710998+PProfizi@users.noreply.github.com> Date: Mon, 4 Nov 2024 23:30:33 +0100 Subject: [PATCH] Fix wheel upload condition for tests.yml (#1857) Signed-off-by: paul.profizi --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5e3d68bfe1..bdac7b7c91 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -139,7 +139,7 @@ jobs: echo "wheel_name=${name[0]}" >> $GITHUB_OUTPUT - name: "Upload wheel to artifacts" - if: (inputs.wheel == 'true') && !( (inputs.test_any) && (matrix.os == 'ubuntu-latest') ) + if: (inputs.wheel == 'true') && !( (inputs.test_any == 'true') && (matrix.os == 'ubuntu-latest') ) uses: actions/upload-artifact@v4 with: name: ${{ steps.wheel.outputs.wheel_name }}