Skip to content
Merged
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions .github/workflows/pypi-package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Build & maybe upload PyPI package

on:
push:
pull_request:
Comment thread
hugovk marked this conversation as resolved.
release:
types:
- published
workflow_dispatch:
Comment thread
hugovk marked this conversation as resolved.

permissions:
contents: read

jobs:
# Always build & lint package.
build-package:
name: Build & verify package
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- uses: hynek/build-and-inspect-python-package@v1
Comment thread
hugovk marked this conversation as resolved.

# Upload to real PyPI on GitHub Releases.
release-pypi:
name: Publish to PyPI
environment: release-pypi
if: github.repository_owner == 'python' && github.event.action == 'published'
Comment thread
hugovk marked this conversation as resolved.
Comment thread
hugovk marked this conversation as resolved.
runs-on: ubuntu-latest
needs: build-package

permissions:
id-token: write

steps:
- name: Download packages built by build-and-inspect-python-package
uses: actions/download-artifact@v3
with:
name: Packages
path: dist

- name: Upload package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1