Skip to content

2025.11.1

2025.11.1 #16

Workflow file for this run

name: Build distribution
on:
release:
types: [created]
permissions:
contents: write
pull-requests: write
id-token: write
jobs:
test:
uses: ./.github/workflows/test.yml
lint:
uses: ./.github/workflows/lint.yml
deploy:
needs: [test, lint]
name: Deploy to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: "true"
- run: echo "SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)" >> $GITHUB_ENV
# Allow prerelease if explicitly marked in pyproject.toml so we can prerelease in conjunction
# with engine updates.
- run: uv build --prerelease=explicit
- uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: ./dist