From b7246c05ecfbc7b55b4bea55c84bd27bfd525b0a Mon Sep 17 00:00:00 2001 From: Roland Walker Date: Sat, 12 Sep 2026 18:35:01 -0400 Subject: [PATCH] update naming and commentary in publish.yml Principally rename the entire workflow since it no longer publishes only a Python package. --- .github/workflows/publish.yml | 8 +++++--- changelog.md | 8 ++++++++ 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 81cd7fbb..a1c122f2 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,4 +1,4 @@ -name: Publish Python Package +name: Publish Packages on: release: @@ -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] @@ -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 diff --git a/changelog.md b/changelog.md index 7d54216b..f2bdd3fe 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,11 @@ +Upcoming (TBD) +============== + +Internal +-------- +* Naming and commentary in `publish.yml` workflow. + + 2.24.4 (2026/09/12) ==============