Skip to content

Workflow file for this run

name: "Publish Python 🐍 distributions 📦 to PyPI"
on:
release:
types:
- published
permissions:
contents: read
jobs:
build-n-publish-pypi:
name: Build and publish Python 🐍 distributions 📦 to PyPI
runs-on: ubuntu-latest
environment: production
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
- name: Harden Runner
uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4 # v2.7.1
with:
disable-sudo: true
egress-policy: block
allowed-endpoints: >
files.pythonhosted.org:443
github.com:443
pypi.org:443
upload.pypi.org:443
- uses: actions/[email protected]
- name: Set up Python3
uses: actions/[email protected]
with:
python-version: "3.x"
- name: Install packaging libraries
run: |
python -m pip install babel build setuptools wheel
- name: Build a binary wheel and a source tarball
run: |
make translate
python -m build --sdist --wheel
- name: Publish distribution 📦 to PyPI
uses: pypa/[email protected]