Skip to content

v1.0.2

v1.0.2 #19

Workflow file for this run

# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
name: release
on:
release:
types: [published]
jobs:
pypi-publish:
name: upload release to PyPI
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up nox
uses: wntrblm/[email protected]
with:
python-versions: '3.12'
- name: Build dist
run: nox -s build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1