Update setup.py #754
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
name: pypi publish | |
on: | |
push: | |
branches: [ main ] | |
release: | |
types: [ created ] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install build | |
pip install twine | |
- name: Build package | |
run: python -m build | |
- name: Build and publish to PyPI on push to main | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} | |
run: twine upload dist/* | |
- name: Clean dist directory | |
run: rm -rf dist/* | |
- name: Build package for PyPI on release | |
if: github.event_name == 'release' && github.event.action == 'created' | |
run: python -m build | |
- name: Build and publish to PyPI on release | |
if: github.event_name == 'release' && github.event.action == 'created' | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} | |
run: twine upload dist/* |