Skip to content

Merge pull request #78 from jd/fix-workflow #9

Merge pull request #78 from jd/fix-workflow

Merge pull request #78 from jd/fix-workflow #9

Workflow file for this run

name: upload release to PyPI
on:
release:
- published
jobs:
pypi-publish:
name: upload release to PyPI
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write
contents: write
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
fetch-tags: 'true'
- uses: actions/[email protected]
with:
python-version: 3.12
- name: Build the packages distributions
run: |
python3 -m build . --wheel --sdist
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1