Skip to content

v2.0.0-alpha.0

v2.0.0-alpha.0 #1

Workflow file for this run

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