Skip to content

0.2.0 (2023-08-23)

0.2.0 (2023-08-23) #2

Workflow file for this run

name: Release
on:
release:
types:
- published
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Publish package to pypi
run: ./nox.sh -s publish -- pypi
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}