Skip to content

Release 0.2.0 (#19)

Release 0.2.0 (#19) #3

Workflow file for this run

name: Publish Release to PYPI
on:
push:
branches:
- main
jobs:
deployment:
runs-on: ubuntu-latest
environment: release
steps:
- name: Build and Publish
uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install poetry
- run: poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}
- run: poetry publish --build