Skip to content

v0.7.0 -- Update to Pydantic v2 and Task Restarting #17

v0.7.0 -- Update to Pydantic v2 and Task Restarting

v0.7.0 -- Update to Pydantic v2 and Task Restarting #17

Workflow file for this run

name: Publish to PyPi
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
.
- name: pypi-publish
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_TOKEN }}