CI: allow triggering publish workflow manually #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Python 🐍 distributions 📦 to PyPI | ||
on: | ||
release: | ||
types: [created] | ||
workflow_dispatch | ||
jobs: | ||
build-n-publish: | ||
name: Build and publish Python 🐍 distributions 📦 to PyPI | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: "3.10" | ||
- name: Install wheel and setuptools | ||
run: >- | ||
python -m | ||
pip install | ||
wheel | ||
setuptools | ||
extreqs | ||
--user | ||
--upgrade | ||
- name: Build a binary wheel and a source tarball | ||
run: >- | ||
python3 | ||
setup.py | ||
sdist | ||
bdist_wheel | ||
- name: Publish distribution 📦 to PyPI | ||
uses: pypa/gh-action-pypi-publish@master | ||
with: | ||
password: ${{ secrets.pypi_password }} |