Skip to content

Version 1.8.3

Version 1.8.3 #2

Workflow file for this run

name: CD
on:
workflow_dispatch:
release:
types:
- published
env:
FORCE_COLOR: 3
jobs:
dist:
name: Dist
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: hynek/build-and-inspect-python-package@v2
deploy:
name: Deploy
runs-on: ubuntu-22.04
needs: [dist]
if: github.event_name == 'release' && github.event.action == 'published'
environment: pypi
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v4
with:
name: Packages
path: dist
- uses: pypa/gh-action-pypi-publish@release/v1