Skip to content

Commit

Permalink
Fix twine check
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiebergman committed Apr 24, 2022
1 parent eb13ae0 commit b2ac331
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ jobs:
run: |
pip install twine
last_dist=$(ls -t dist/auto-sklearn-*.tar.gz | head -n 1)
twine_output=`twine check "$last_dist"`
if [[ "$twine_output" != "Checking $last_dist: PASSED" ]]; then echo $twine_output && exit 1;fi
twine check "$last_dist" --strict
- name: Install dist
run: |
Expand Down

0 comments on commit b2ac331

Please sign in to comment.