Skip to content

Release fontpkg core #2

Release fontpkg core

Release fontpkg core #2

Workflow file for this run

name: Release fontpkg core
on:
push:
tags: ["v*"]
workflow_dispatch:
permissions:
id-token: write
contents: read
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
python-version: "3.13"
- run: uv sync --all-packages
- run: uv run pytest core/tests generator/tests
- run: uv build --package fontpkg --out-dir dist
- run: uv publish dist/*
env:
UV_PUBLISH_TOKEN: ${{ secrets.PYPI_TOKEN }}