Skip to content

v0.6.0

v0.6.0 #4

Workflow file for this run

name: Release
on:
release:
types: [published]
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: '3.9'
architecture: x64
- run: pip install nox==2022.1.7
- run: pip install poetry==1.5.1
- run: nox
- run: poetry build
- run: poetry publish --username=__token__ --password=${{ secrets.PYPI_TOKEN }}