Skip to content

Upgrade Pydantic to 2.6 #18

Upgrade Pydantic to 2.6

Upgrade Pydantic to 2.6 #18

---
name: Upload Python Package
on:
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x
- uses: Gr1N/setup-poetry@v7
- name: Install poetry dependencies
run: |
poetry install
- name: Poetry build
run: |
poetry build
- name: Poetry publish to Pypi
run: |-
poetry publish -u ${{ secrets.PYPI_USERNAME}} -p ${{ secrets.PYPI_PASSWORD }}