Skip to content

Commit 71c2665

Browse files
authored
fix dist twine check for github (#439)
1 parent bdd3fa8 commit 71c2665

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/dist.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@ jobs:
4343
run: |
4444
pip install twine
4545
last_dist=$(ls -t dist/autoPyTorch-*.tar.gz | head -n 1)
46-
twine_output=`twine check "$last_dist"`
47-
if [[ "$twine_output" != "Checking $last_dist: PASSED" ]]; then echo $twine_output && exit 1;fi
46+
twine check "$last_dist" --strict
4847
4948
- name: Install dist
5049
run: |

0 commit comments

Comments
 (0)