Skip to content

Commit 442ca72

Browse files
committed
ci: fix check for wheels
Signed-off-by: Henry Schreiner <[email protected]>
1 parent 6b9aff6 commit 442ca72

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,13 @@ jobs:
190190
shell: bash
191191
run: |
192192
test $(find wheelhouse -name '*.whl' | wc -l) -ge 1
193-
test $(find wheelhouse_only -name '*.whl' | wc -l) -eq 1
194193
test $(find wheelhouse_config_file -name '*.whl' | wc -l) -eq 1
195194
195+
- name: Check Action artifacts (native build only)
196+
if: matrix.platform == ''
197+
run: |
198+
test $(find wheelhouse_only -name '*.whl' | wc -l) -eq 1
199+
196200
- uses: actions/upload-artifact@v4
197201
with:
198202
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}

0 commit comments

Comments
 (0)