Publish canonical-sphinx-extensions to PyPI #26
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 canonical-sphinx-extensions to PyPI | |
on: workflow_dispatch | |
jobs: | |
build: | |
name: Build package | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install pypa/build | |
run: >- | |
python -m | |
pip install | |
build | |
--user | |
- name: Build a binary wheel and a source tarball | |
run: >- | |
python -m | |
build | |
--sdist | |
--wheel | |
--outdir dist/ | |
. | |
- name: Store the package | |
uses: actions/upload-artifact@v3 | |
with: | |
name: python-package | |
path: dist/ | |
publish: | |
name: Publish to PyPI | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
environment: | |
name: pypi | |
url: https://pypi.org/p/canonical-sphinx-extensions | |
permissions: | |
id-token: write | |
steps: | |
- name: Download package | |
uses: actions/download-artifact@v3 | |
with: | |
name: python-package | |
path: dist/ | |
- name: Publish to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 |