Skip to content

Update schema artifacts #43

Update schema artifacts

Update schema artifacts #43

Workflow file for this run

# name: Publish Python Package
# Not currently used for this project.
# on:
# workflow_dispatch:
# release:
# types: [created]
# jobs:
# build-n-publish:
# name: Build and publish Python 🐍 distributions 📦 to PyPI
# runs-on: ubuntu-latest
# environment: release
# permissions:
# id-token: write
# steps:
# - uses: actions/checkout@v4
# - name: Set up Python
# uses: actions/setup-python@v5
# with:
# python-version: 3.9
# cache: pip
# cache-dependency-path: '**/pyproject.toml'
# - name: Install uv
# run: pip install uv
# - name: Install dependencies
# run: uv pip install -r pyproject.toml --system -e .
# - name: Install build dependencies
# run: uv pip install --system build hatchling
# - name: Build source and wheel archives
# run: python -m build
# - name: Publish
# uses: pypa/gh-action-pypi-publish@release/v1