Skip to content

Publish to PyPI

Publish to PyPI #2

Workflow file for this run

name: Publish SuperGemini to PyPI
on:
push:
tags:
- "v*"
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
pip install build setuptools wheel twine
- name: Build SuperGemini package
run: python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}