Skip to content

chore: release v0.19.0 #14

chore: release v0.19.0

chore: release v0.19.0 #14

Workflow file for this run

name: publish
on:
push:
tags:
- 'v*'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: install build dependencies
run: pip install build
- name: build dist
run: python -m build
- name: publish
uses: pypa/[email protected]
with:
password: ${{ secrets.PYPI_API_TOKEN }}