Skip to content

1.0.5

1.0.5 #3

Workflow file for this run

name: Publish to PyPI
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install tools
run: |
python -m pip install --upgrade pip
pip install '.[dev]'
- name: Build
run: |
python -m build
- name: Publish
uses: pypa/gh-action-pypi-publish@release/v1
# https://github.com/pypa/gh-action-pypi-publish
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
verbose: true