Skip to content

docs: update CHANGELOG for version 2.1.2 #6

docs: update CHANGELOG for version 2.1.2

docs: update CHANGELOG for version 2.1.2 #6

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- "*"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install dependencies
run: pip install tox
- name: Build distribution
run: tox -e build
- name: Publish to PyPI
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: tox -e publish -- --repository pypi