Skip to content

Fix a typo in the publish action. #8

Fix a typo in the publish action.

Fix a typo in the publish action. #8

Workflow file for this run

name: Publish
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Publish to PyPI
run: |
pip install --upgrade build twine
python -m build
uses: pypa/[email protected]
with:
password: ${{ secrets.PYPI_TOKEN }}