Skip to content

3.2.0

3.2.0 #13

Workflow file for this run

name: Release
on:
release:
types: [published]
permissions:
contents: read
jobs:
pip:
environment: pypi
permissions:
contents: read
id-token: write
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install
run: |
pip install --upgrade pip wheel
pip install build twine
- name: Build
run: |
python -m build
twine check dist/*
- name: Publish packages to PyPI
uses: pypa/gh-action-pypi-publish@release/v1