Skip to content

Commit

Permalink
Merge pull request #60 from SmartCodeMaker/manylinux3
Browse files Browse the repository at this point in the history
Fix typo in linux platform name to be ignored on PyPI
  • Loading branch information
wassimj authored May 7, 2024
2 parents 41f519a + a414b1e commit dc1455b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -729,11 +729,11 @@ jobs:
with:
path: all-artifacts
- name: Display new structure of downloaded files
# Skip _linux_ builds if found, PyPI rejects them; use _manylinux*.
# Skip '-linux_' builds if found, PyPI rejects them; use -manylinux*.
run: |
mkdir -p dist
find ./all-artifacts/ -type f -iname "*.whl" -exec mv {} ./dist/ \;
find ./dist/ -type f -iname "*_linux_*.whl" -exec rm {} \;
find ./dist/ -type f -iname "*-linux_*.whl" -exec rm {} \;
ls -R dist
- name: Publish package ${{ needs.prepare-build-info.outputs.tagname }} distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
Expand Down

0 comments on commit dc1455b

Please sign in to comment.