Skip to content

1.4.0

1.4.0 #11

Workflow file for this run

name: Publish
on:
release:
types: [published]
jobs:
build:
name: Build and publish Python Package 📦
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install pypa/build
run: |
python -m pip install -U pip wheel build twine
- name: Build package
run: |
python -m build
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1.8
with:
password: ${{ secrets.PYPI_API_TOKEN }}