Skip to content

v2.7.0

v2.7.0 #19

Workflow file for this run

name: "PyPI Packaging"
on:
release:
types: created
jobs:
publish:
runs-on: ubuntu-latest
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- name: Clone
uses: actions/checkout@v2
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Build package
run: |
python -m pip install --upgrade pip wheel
python -m pip install poetry
poetry install
poetry build
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1