From b2932b655bab3a32a8c4add61644f8cee54fc8f7 Mon Sep 17 00:00:00 2001 From: Roland Walker Date: Sat, 12 Sep 2026 16:38:09 -0400 Subject: [PATCH] add "artifact-metadata: write" publish permissions in an attempt to avoid the "docker pull" error unsupported media type application/vnd.oci.empty.v1+json removing "load: true" which had no effect, and bumping the release version in the changelog. --- .github/workflows/publish.yml | 4 +--- changelog.md | 10 ++++++++++ 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2f083a69..4a095b7e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -281,6 +281,7 @@ jobs: packages: write attestations: write id-token: write + artifact-metadata: write steps: - name: Checkout repository @@ -305,9 +306,6 @@ jobs: with: context: . file: docker/Dockerfile - # avoids pull error: unsupported media type application/vnd.oci.empty.v1+json - # by publishing a v2 mediaType - load: true push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} diff --git a/changelog.md b/changelog.md index 9742808e..a475d4e7 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,13 @@ +2.24.2 (2026/09/12) +============== + +Bug Fixes +-------- +* Revert `docker` output-type on ghcr.io images. +* Set `artifact-metadata: write` in `publish.yml`. + + + 2.24.1 (2026/09/12) ==============