Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

PyPI Upload

PyPI Upload #9

Workflow file for this run

name: PyPI Upload
on:
release:
types: [published]
workflow_dispatch:
permissions:
contents: read
jobs:
build:
name: PyPI Upload
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "*"
- name: Install latest pip, build, twine
run: |
python -m pip install --upgrade --disable-pip-version-check pip
python -m pip install --upgrade build twine
- name: Build wheel and source distributions
run: |
python -m build
- name: Upload to PyPI via Twine
env:
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
twine upload --verbose -u '__token__' dist/*