Skip to content

release: v0.2.0 - 100% recall@10 benchmark, visual architecture map, … #1

release: v0.2.0 - 100% recall@10 benchmark, visual architecture map, …

release: v0.2.0 - 100% recall@10 benchmark, visual architecture map, … #1

Workflow file for this run

name: Publish to PyPI 🚀
on:
release:
types: [published]
push:
tags:
- 'v*'
workflow_dispatch:
jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install build and verification tools
run: |
python -m pip install --upgrade pip
pip install build twine
- name: Build distributions
run: |
python -m build
- name: Verify package metadata
run: |
twine check dist/*
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
skip-existing: true