Skip to content

Version 1.7.1

Version 1.7.1 #9

Workflow file for this run

name: Package and upload to PyPI
# Publish when a (published) GitHub Release is created
on:
release:
types:
- published
jobs:
build_publish:
name: Build and publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: pip install build
- name: Build
run: python -m build
- uses: pypa/gh-action-pypi-publish@v1.5.0
with:
user: __token__
password: ${{ secrets.pypi_password }}