File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
ci/templates/.github/workflows Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -734,8 +734,11 @@ jobs:
734
734
verbose : true
735
735
flags : ${{ matrix.tox_env }}
736
736
- name : check wheel
737
- if : matrix.cibw_build
738
- run : twine check wheelhouse/*.whl
737
+ if : >
738
+ !matrix.cibw_ft && matrix.cibw_build
739
+ run :
740
+ python -mpip install --progress-bar=off twine
741
+ twine check wheelhouse/*.whl
739
742
- name : upload wheel
740
743
uses : actions/upload-artifact@v4
741
744
if : matrix.cibw_build
Original file line number Diff line number Diff line change @@ -123,8 +123,11 @@ jobs:
123
123
verbose : true
124
124
flags : {{ '${{ matrix.tox_env }}' }}
125
125
- name : check wheel
126
- if : matrix.cibw_build
127
- run : twine check wheelhouse/*.whl
126
+ if : >
127
+ !matrix.cibw_ft && matrix.cibw_build
128
+ run :
129
+ python -mpip install --progress-bar=off twine
130
+ twine check wheelhouse/*.whl
128
131
- name : upload wheel
129
132
uses : actions/upload-artifact@v4
130
133
if : matrix.cibw_build
You can’t perform that action at this time.
0 commit comments