Skip to content

InterpolatePy v3.0.0 — C++ Port & Dual-Backend Architecture #10

InterpolatePy v3.0.0 — C++ Port & Dual-Backend Architecture

InterpolatePy v3.0.0 — C++ Port & Dual-Backend Architecture #10

Workflow file for this run

name: Publish
on:
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
environment: pypi
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- name: Install build tools
run: |
python -m pip install --upgrade pip
pip install build twine
- name: Build package
run: python -m build
- name: Verify package
run: twine check dist/*
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1