Skip to content

fix static typing for schema argument (#41) #14

fix static typing for schema argument (#41)

fix static typing for schema argument (#41) #14

Workflow file for this run

name: Publish Python 🐍 distributions 📦 to PyPI
on:
push:
tags:
- '*'
jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Load cached Poetry installation
id: cached-poetry
uses: actions/cache@v3
with:
path: ~/.local
key: poetry-0
- name: Install Poetry
if: steps.cached-poetry.outputs.cache-hit != 'true'
uses: snok/install-poetry@v1
- name: Publish to TestPyPi
run: |
poetry version ${{ github.ref_name }}
poetry config pypi-token.pypi ${{ secrets.PYPI_API_TOKEN }}
poetry publish --build