Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
8 changes: 5 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish Python Package
name: Publish Packages

on:
release:
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:
path: dist/

publish-pypi:
name: Publish to PyPI
name: Publish Wheel to PyPI
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
needs: [build]
Expand All @@ -269,9 +269,11 @@ jobs:
uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33 # v1.14.2

publish-image:
name: Publish to ghcr.io
name: Publish Image to ghcr.io
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
# doesn't actually need the results of build, but it makes sense to run this
# concurrently with publish-pypi
needs: [build]
environment: release

Expand Down
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Upcoming (TBD)
==============

Internal
--------
* Naming and commentary in `publish.yml` workflow.


2.24.4 (2026/09/12)
==============

Expand Down
Loading