Skip to content

⬆️ (pyproject.toml): bump version from 0.1.1 to 0.1.2 to prepare for … #5

⬆️ (pyproject.toml): bump version from 0.1.1 to 0.1.2 to prepare for …

⬆️ (pyproject.toml): bump version from 0.1.1 to 0.1.2 to prepare for … #5

Workflow file for this run

name: Publish
on:
push:
tags:
# Publish on any tag starting with a `v`, e.g., v0.1.0
- v*
jobs:
tests:
uses: ./.github/workflows/tests.yml
publish:
runs-on: ubuntu-22.04
needs: tests
environment:
name: pypi
permissions:
id-token: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install Python 3.13
run: uv python install 3.13
- name: Build
run: uv build
- name: Publish
run: uv publish