Skip to content

Commit

Permalink
github: automatically publish to PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
FrostyX committed Nov 24, 2024
1 parent f3c9cb2 commit 0284310
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# 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: Get history and tags for SCM versioning to work
run: |
git fetch --prune --unshallow
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- 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

0 comments on commit 0284310

Please sign in to comment.