Skip to content

v0.2.8

v0.2.8 #25

Workflow file for this run

name: release
on:
release:
types: [published]
jobs:
publish-pypi:
runs-on: ubuntu-latest
permissions:
id-token: write
strategy:
matrix:
python-version: [ "3.12" ]
name: "release: python ${{ matrix.python-version }}"
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
cache: "pip"
python-version: ${{ matrix.python-version }}
- name: Install Requirements
run: pip install setuptools wheel twine build
- name: Build
run: python -m build
- name: Publish
uses: pypa/gh-action-pypi-publish@release/v1