Skip to content

v0.3.2

v0.3.2 #5

Workflow file for this run

name: Release
on:
release:
types: [published]
permissions:
id-token: write
contents: read
jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v6
with:
persist-credentials: false
- uses: actions/setup-python@v5
with:
python-version: 3.9
- run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -e .
- name: Run Tests
run: make test
- name: Install build tooling
run: |
pip install build
- name: Build sdist and wheel
env:
PACKAGE_VERSION: ${{ github.ref_name }}
run: python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1