Skip to content

Commit

Permalink
Merge pull request #842 from szmark001/fix_linux_wheel_deploy
Browse files Browse the repository at this point in the history
fix typo and add step to remove the linux wheel
  • Loading branch information
edwinnglabs authored Jan 22, 2024
2 parents c72517b + e40721d commit 3525a59
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/pypi-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ jobs:
- name: Build package
run:
python -m build
auditwheel repair dis/*linux_x86_64.whl
- name: Convert linux wheel to manylinux wheels
auditwheel repair -w dist dist/*linux_x86_64.whl
- name: Remove platform specific linux wheels
rm dist/*-linux_x86_64.whl
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
Expand Down

0 comments on commit 3525a59

Please sign in to comment.