Skip to content

Commit b2ac331

Browse files
committed
Fix twine check
1 parent eb13ae0 commit b2ac331

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/dist.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ jobs:
3939
run: |
4040
pip install twine
4141
last_dist=$(ls -t dist/auto-sklearn-*.tar.gz | head -n 1)
42-
twine_output=`twine check "$last_dist"`
43-
if [[ "$twine_output" != "Checking $last_dist: PASSED" ]]; then echo $twine_output && exit 1;fi
42+
twine check "$last_dist" --strict
43+
4444
4545
- name: Install dist
4646
run: |

0 commit comments

Comments
 (0)