Skip to content

Add changelog, add e2e tests, update tools, remove WebUnblocker (#16) #10

Add changelog, add e2e tests, update tools, remove WebUnblocker (#16)

Add changelog, add e2e tests, update tools, remove WebUnblocker (#16) #10

Workflow file for this run

name: Publish Python 🐍 distributions 📦 to PyPI
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
build-n-publish:
name: Build and publish Python distribution to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Install uv
run: |
pip install uv
- name: Install dependencies
run: |
uv sync --no-dev
- name: Build a dist package
run: uv build
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}