-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c7a59a6
commit 16c3585
Showing
1 changed file
with
16 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,17 +24,25 @@ jobs: | |
pip install setuptools wheel twine | ||
pip install build | ||
pip install auditwheel | ||
- name: Build package | ||
run: | ||
python -m build | ||
# - name: Build package | ||
# run: | ||
# python -m build | ||
# - name: Convert linux wheel to manylinux wheels | ||
# run: | ||
# auditwheel repair --plat manylinux2014_x86_64 -w dist dist/*linux_x86_64.whl | ||
# - name: Remove platform specific linux wheels | ||
# run: | ||
# rm dist/*-linux_x86_64.whl | ||
- name: Publish package | ||
uses: pypa/[email protected] | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_PASSWORD }} | ||
# - name: Publish package | ||
# uses: pypa/[email protected] | ||
# with: | ||
# user: __token__ | ||
# password: ${{ secrets.PYPI_PASSWORD }} | ||
- name: Build and publish | ||
env: | ||
TWINE_USERNAME: __token__ | ||
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | ||
run: | | ||
pip install . | ||
python -m build | ||
python -m twine upload dist/*.tar.gz |