Skip to content

Commit

Permalink
Use hynek's build-and-inspect-python-package to build the package
Browse files Browse the repository at this point in the history
Also enabling attestations to get signatures started.

Signed-off-by: GitHub <[email protected]>
  • Loading branch information
shenanigansd authored Aug 13, 2024
1 parent 7d6eee6 commit c892aa4
Showing 1 changed file with 21 additions and 32 deletions.
53 changes: 21 additions & 32 deletions .github/workflows/python-publish-pypi.yaml
Original file line number Diff line number Diff line change
@@ -1,47 +1,36 @@
name: "Publish Python 🐍 distributions πŸ“¦ to PyPI"
name: Publish Python 🐍 distributions πŸ“¦ to PyPI

on:
push:
branches:
- main
pull_request:
branches:
- main
release:
types: [published]
types:
- published

jobs:
build:
name: "Build distribution πŸ“¦"
name: Build distribution πŸ“¦
runs-on: ubuntu-latest
permissions:
attestations: write

steps:
- name: "Checkout repository"
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

- name: "Set up Python 3.x"
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
with:
python-version: "3.x"
cache: "pip"
cache-dependency-path: "pyproject.toml"

- name: "Install pypa/build"
run: >-
python -m
pip install
build
--user
- name: "Build a binary wheel and a source tarball"
run: >-
python -m
build
--outdir dist/
- name: "Upload packages"
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
- name: Build and inspect Python 🐍 package πŸ“¦
uses: hynek/build-and-inspect-python-package@2dbbf2b252d3a3c7cec7a810e3ed5983bd17b13a # v2.8.0
with:
name: python-package-distributions
path: dist/
attest-build-provenance-github: ${{ startswith(github.event.ref, 'refs/tags/') }}

publish-to-pypi:
name: "Publish Python 🐍 distribution πŸ“¦ to PyPI"
name: Publish Python 🐍 distribution πŸ“¦ to PyPI
needs: build
if: ${{ startswith(github.event.ref, 'refs/tags/') }}
runs-on: ubuntu-latest
environment:
name: pypi
Expand All @@ -50,13 +39,13 @@ jobs:
id-token: write

steps:
- name: "Download dists"
- name: Download dists
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
with:
name: python-package-distributions
name: Packages
path: dist/

- name: "Publish distribution πŸ“¦ to PyPI"
- name: Publish distribution πŸ“¦ to PyPI
uses: pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0 # v1.9.0
with:
verbose: true
Expand Down

0 comments on commit c892aa4

Please sign in to comment.