From f55e6aab06029dfe1b64790e97b0ef667de29377 Mon Sep 17 00:00:00 2001 From: Ryan Boehning <1250684+ryboe@users.noreply.github.com> Date: Sun, 22 Feb 2026 16:05:58 -0800 Subject: [PATCH] fix: two bugs in cleanup.yml The package name was missing the "ghcr.io/" prefix. The value of `delete-only-untagged-versions` should've been `"true"` not `true`. --- .github/workflows/cleanup.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cleanup.yml b/.github/workflows/cleanup.yml index 0e27b18..fc261a0 100644 --- a/.github/workflows/cleanup.yml +++ b/.github/workflows/cleanup.yml @@ -14,7 +14,7 @@ jobs: - name: Delete untagged images uses: actions/delete-package-versions@v5 with: - package-name: ${{ github.repository }} + package-name: ghcr.io/${{ github.repository }} package-type: container - delete-only-untagged-versions: true + delete-only-untagged-versions: "true" min-versions-to-keep: 0