Skip to content

v0.29.0

v0.29.0 #43

Workflow file for this run

name: Upload to PyPI
on:
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python
run: uv python install 3.11
- name: Build and publish
run: |
uv run --no-project --with setuptools --with wheel setup.py sdist bdist_wheel
uvx twine upload -u __token__ -p ${{ secrets.PYPI_XDSL_TOKEN }} dist/*