Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9043c7a

Browse files
authoredNov 4, 2024··
Fix wheel upload condition for tests.yml (#1856)
Signed-off-by: paul.profizi <[email protected]>
1 parent 7dc8729 commit 9043c7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ jobs:
139139
echo "wheel_name=${name[0]}" >> $GITHUB_OUTPUT
140140
141141
- name: "Upload wheel to artifacts"
142-
if: (inputs.wheel == 'true') && !(inputs.test_any && (matrix.os == 'ubuntu-latest') )
142+
if: (inputs.wheel == 'true') && !( (inputs.test_any) && (matrix.os == 'ubuntu-latest') )
143143
uses: actions/upload-artifact@v4
144144
with:
145145
name: ${{ steps.wheel.outputs.wheel_name }}

0 commit comments

Comments
 (0)
Please sign in to comment.