Workflow file for this run
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
# Upload a Python package when a release is created | |
# https://packaging.python.org/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows | |
name: Publish Python 🐍 distributions 📦 to PyPI | |
on: | |
release: | |
types: [released] | |
jobs: | |
build-n-publish: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write # for trusted publishing | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
- name: Build a source tarball and a binary wheel | |
# https://pypa-build.readthedocs.io | |
run: | | |
python -m pip install build | |
python -m build | |
- name: Publish 📦 to PyPI | |
# https://github.com/pypa/gh-action-pypi-publish | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
verbose: true |