Skip to content

0.19.7

0.19.7 #149

Workflow file for this run

name: CD
on:
release:
types: [published]
jobs:
cd:
name: Continuous Delivery
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Run checkout
uses: actions/checkout@v4
- name: Set up environment
uses: ./.github/actions/environment
- name: Deploy
uses: ./.github/actions/deploy
with:
version: ${{ github.event.release.tag_name }}
env:
UV_PUBLISH_TOKEN: ${{ secrets.PYPI_API_TOKEN }}