Skip to content

Build and upload to PyPI #3

Build and upload to PyPI

Build and upload to PyPI #3

Workflow file for this run

name: Build and upload to PyPI
on:
workflow_dispatch:
release:
types:
- published
jobs:
build:
name: Build universal wheel and source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/install-test-and-build
with:
extras-require: publishing
- name: Build wheel and source distribution
run: python -m build
- uses: actions/upload-artifact@v4
with:
path: dist/*
upload_test_pypi:
needs: [build]
runs-on: ubuntu-latest
if: github.event_name == 'workflow_dispatch'
steps:
- uses: actions/download-artifact@v4
with:
name: artifact
path: dist
- uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.TEST_PYPI_TOKEN }}
repository_url: https://test.pypi.org/legacy/
upload_pypi:
needs: [build]
runs-on: ubuntu-latest
if: github.event_name == 'release' && github.event.action == 'published'
environment:
name: pypi
url: https://pypi.org/p/distance_explainer
permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing
steps:
- name: Download all the dists
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
verbose: true