Skip to content

Commit

Permalink
Add PyPI trusted publishing workflow
Browse files Browse the repository at this point in the history
- Publishes to Test PyPI for every commit to main
- Publishes to PyPI for version tags
  • Loading branch information
nickstenning committed Oct 6, 2024
1 parent 38d42de commit 9289d9d
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions .github/workflows/pypi-package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
---
name: PyPI package

on:
push:
branches: [main]
tags: ["v[0-9]+.[0-9]+.[0-9]+*"]
workflow_dispatch:

permissions:
attestations: write
contents: read
id-token: write

jobs:
package:
name: Build & verify package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # needed for setuptools_scm version determination
# HACK: for now, disable local versions so we can push to Test PyPI on main
- name: Disable local version
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
run: |
sed -i '/\[tool\.setuptools_scm\]/a local_scheme = "no-local-version"' pyproject.toml
git update-index --assume-unchanged pyproject.toml
- uses: hynek/build-and-inspect-python-package@v2
with:
attest-build-provenance-github: 'true'

release-test-pypi:
name: Publish dev package to test.pypi.org
if: github.repository_owner == 'nickstenning' && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
needs: package
environment: test-pypi
steps:
- name: Download packages
uses: actions/download-artifact@v4
with:
name: Packages
path: dist
- name: Upload package to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/

release-pypi:
name: Publish released package to pypi.org
if: github.repository_owner == 'nickstenning' && startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
needs: package
environment: pypi
steps:
- name: Download packages
uses: actions/download-artifact@v4
with:
name: Packages
path: dist
- name: Upload package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 9289d9d

Please sign in to comment.