Skip to content

Commit e681dc9

Browse files
authored
Fix twince check for sdist wheels (#260)
1 parent 328fc5d commit e681dc9

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,9 +193,7 @@ jobs:
193193
run: |
194194
python -m pip install twine
195195
twine_output=`twine check ${{ env.sdist_name }}`
196-
if [[ "$twine_output" != "Checking ${{ env.sdist_name }}: PASSED" ]]; then
197-
echo $twine_output && exit 1;
198-
fi
196+
twine check ${{env.sdist_name}} --strict
199197
200198
- name: Install dist
201199
run: |

0 commit comments

Comments
 (0)