Skip to content

Commit

Permalink
fix list-pypi-files CI task (#250)
Browse files Browse the repository at this point in the history
* fix list-pypi-files CI task

* take 2

* take 3
  • Loading branch information
samuelcolvin committed Oct 13, 2023
1 parent 6ea19ca commit f5c3f95
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -256,9 +256,10 @@ jobs:
tree -a sdist-files
- name: extract and list wheel file
run: |
ls dist/*cp37-abi3-manylinux*x86_64.whl | head -n 1
python -m zipfile --list `ls dist/*cp37-abi3-manylinux*x86_64.whl | head -n 1`
run: ls dist/*cp312-manylinux_2_17_x86_64*.whl | head -n 1

- name: extract and list wheel file
run: python -m zipfile --list `ls dist/*cp312-manylinux_2_17_x86_64*.whl | head -n 1`

- run: pip install twine
- run: twine check dist/*
Expand Down

0 comments on commit f5c3f95

Please sign in to comment.