Skip to content

Commit

Permalink
ci: fix pypi build
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed May 17, 2024
1 parent a9da83f commit 562e957
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
pip install setuptools wheel twine pipx
pip install .
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PWD }}
run: |
python setup.py sdist bdist_wheel
pipx run build --sdist --wheel
twine upload --skip-existing dist/*

0 comments on commit 562e957

Please sign in to comment.