Skip to content

add auto-completion for narration #1876

add auto-completion for narration

add auto-completion for narration #1876

Workflow file for this run

name: Build Python package (and upload to PyPI on tags)
on:
workflow_dispatch:
push:
branches:
- main
tags:
- "v*"
pull_request:
branches:
- main
permissions:
contents: read
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- uses: actions/setup-node@v4
with:
node-version: "lts/*"
cache: "npm"
cache-dependency-path: frontend/package-lock.json
- uses: astral-sh/setup-uv@v6
- run: uv build
- name: Publish release
if: github.event_name == 'push' && github.ref_type == 'tag'
env:
UV_PUBLISH_USERNAME: __token__
UV_PUBLISH_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: uv publish