Skip to content

Release v0.3.0

Release v0.3.0 #6

Workflow file for this run

name: Build
on:
push:
branches:
- main
jobs:
build-and-deploy:
name: Build and Deploy to PyPI
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install Build Tools
run: |
python -m pip install --upgrade pip setuptools wheel
pip install build twine
- name: Build Package
run: python -m build
- name: Publish to PyPI
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: twine upload dist/*