Skip to content

fix: v0.2.19 - Robust Graph Key Patch & Dynamic Versioning #18

fix: v0.2.19 - Robust Graph Key Patch & Dynamic Versioning

fix: v0.2.19 - Robust Graph Key Patch & Dynamic Versioning #18

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- "v*"
- "[0-9]+.[0-9]+.[0-9]+"
jobs:
build-and-publish:
name: Build and publish
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Upgrade pip and install build
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade build
- name: Build sdist and wheel
run: |
python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
skip-existing: true