From fd87585a20eafc600d598f5e2f84f483b6102472 Mon Sep 17 00:00:00 2001 From: Roland Walker Date: Sat, 12 Sep 2026 16:14:19 -0400 Subject: [PATCH] set "docker" output-type on ghcr.io images in an attempt to avoid the following error on "docker pull": unsupported media type application/vnd.oci.empty.v1+json which happens when copying the headlined GitHub instructions at * https://github.com/dbcli/mycli/pkgs/container/mycli which pulls by SHA (rather than using our README.md which shows how to pull by tag). Q: Could the problem also have to do with merge commits? Incidentally update the changelog for release v2.24.1 . --- .github/workflows/publish.yml | 3 +++ changelog.md | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index dc20676e..2f083a69 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -305,6 +305,9 @@ 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 e50c86d0..9742808e 100644 --- a/changelog.md +++ b/changelog.md @@ -1,9 +1,10 @@ -Upcoming (TBD) +2.24.1 (2026/09/12) ============== Bug Fixes -------- * Omitted completion-candidate methods are no longer applied at all. +* Set `docker` output-type on ghcr.io images. 2.24.0 (2026/09/12)