Skip to content

v4.2.0: Add support for streaming and iterions #20

v4.2.0: Add support for streaming and iterions

v4.2.0: Add support for streaming and iterions #20

Workflow file for this run

name: Publish Python 🐍 distribution 📦 to PyPI
on:
release:
types: [created]
jobs:
build-and-publish:
name: Build and publish to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
pip install build wheel twine
- name: Build package
run: |
python -m build
- name: Publish to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.COMMUNITYVIAGITHUB }}
run: |
python -m twine upload dist/*