Publish to PyPI #1
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
name: Publish to PyPI | |
on: | |
release: | |
types: [published] | |
jobs: | |
build: | |
uses: ./.github/workflows/build.yml # Build the package artifacts | |
with: | |
python-version: '3.10' | |
node-version: 'v18.16.0' | |
pypi-publish: | |
name: Upload release to PyPI | |
runs-on: ubuntu-latest | |
environment: | |
name: pypi | |
permissions: | |
id-token: write # Mandatory for trusted publishing | |
contents: read # Required to access repository files | |
needs: build # Waits for the build job to finish | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Download built distributions | |
uses: actions/download-artifact@v4 | |
with: | |
name: package-distributions | |
path: dist/ | |
- name: Publish package distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
password: ${{ secrets.PYPI_API_TOKEN }} |