Skip to content

chore: bump version to 0.3.7 and add changelog entry #14

chore: bump version to 0.3.7 and add changelog entry

chore: bump version to 0.3.7 and add changelog entry #14

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- "v*"
jobs:
publish:
runs-on: ubuntu-latest
environment: pypi
permissions:
id-token: write # required for OIDC trusted publishing
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: "3.12"
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 2.4.1
virtualenvs-create: true
virtualenvs-in-project: true
- name: Install production dependencies
run: poetry install --no-interaction --no-root --only main
- name: Audit dependencies
uses: pypa/gh-action-pip-audit@v1.1.0
with:
virtual-environment: .venv
- name: Install build
run: pip install build
- name: Build distribution
run: python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1