Skip to content

v8.7

v8.7 #28

Workflow file for this run

name: release
on:
release:
types:
- published
jobs:
build-and-publish:
name: Build package and publish to PyPI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: python3 -m pip install flit
- name: Build package
run: python3 -m flit build
- name: Publish package to PyPI
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.pypi_password }}