Skip to content

2025.9.1a3

2025.9.1a3 #5

Workflow file for this run

name: Build distribution
on:
release:
types: [created]
jobs:
test:
uses: ./.github/workflows/test.yml
lint:
uses: ./.github/workflows/lint.yml

Check failure on line 11 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish.yml

Invalid workflow file

error parsing called workflow ".github/workflows/publish.yml" -> "./.github/workflows/lint.yml" (source tag with sha:4d14812d23bac06498b6d793d5d283eec18c15fc) : workflow is not reusable as it is missing a `on.workflow_call` trigger
deploy:
needs: [test, lint]
name: Deploy to PyPI
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- run: echo "SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)" >> $GITHUB_ENV
- run: uv build
- uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: ./dist