From c83bb4d30420f26be7dd0139efebde80538f330c Mon Sep 17 00:00:00 2001 From: "paul.profizi" Date: Mon, 4 Nov 2024 23:12:57 +0100 Subject: [PATCH] Fix wheel upload condition for tests.yml 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 c7a0b537712..5e3d68bfe10 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) && (matrix.os == 'ubuntu-latest') ) uses: actions/upload-artifact@v4 with: name: ${{ steps.wheel.outputs.wheel_name }}