Skip to content

Publish to PyPI

Publish to PyPI #1

Workflow file for this run

name: Publish to PyPI
on:
workflow_dispatch:
# Optional inputs, you can add more according to your needs
inputs:
# version:
# description: 'Version of the package to release'
# required: true
# default: '1.0.0'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
# Add steps for any necessary setup, like installing dependencies
- name: Build
run: |
python -m pip install --upgrade pip
python -m pip install -U twine
python -m pip install -U wheel
python3 -m pip install build==1.0.3 # pin build
rm -rf ./build
rm -rf ./dist/*
python3 -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}