Skip to content

Commit

Permalink
Update pypi-deploy workflow to sdist
Browse files Browse the repository at this point in the history
Clean up workflow, remove auditwheel since not needed.

Cleanup
  • Loading branch information
swotai committed Mar 13, 2024
1 parent 93033f1 commit d517fe0
Showing 1 changed file with 3 additions and 23 deletions.
26 changes: 3 additions & 23 deletions .github/workflows/pypi-deploy.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: Deploy Package to PyPI

on:
Expand All @@ -17,32 +12,17 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
pip install build
pip install auditwheel
# - 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: 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
python -m build --sdist
python -m twine upload dist/*.tar.gz

0 comments on commit d517fe0

Please sign in to comment.