Skip to content

minor updates to readme #9

minor updates to readme

minor updates to readme #9

Workflow file for this run

name: 📦 Publish to PyPI
on:
push:
tags: [ 'v*' ]
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
id-token: write
steps:
- name: Checkout code + tags
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install Poetry
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Build distributions
run: poetry build --format sdist --format wheel
- name: Publish distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}