Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 29 additions & 11 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
name: Deployment
name: Publish to PyPI
on:
push:
branches-ignore: ["*"]
tags: ["*"]
release:
types: [published]

permissions:
id-token: write

jobs:
deploy:
build:
runs-on: ubuntu-latest
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
steps:
- name: Checkout repository
uses: actions/checkout@v6
Expand All @@ -15,13 +17,29 @@ jobs:

- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: "3.14"

- name: Build package
- name: Set up Python
run: uv python install 3.14

- name: Build
run: uv build

- name: Upload dist
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/

publish:
needs: build
runs-on: ubuntu-latest
environment: pypi
steps:
- name: Download dist
uses: actions/download-artifact@v4
with:
name: dist
path: dist/

- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_PASSWORD }}
Loading