Skip to content

Commit f55e6aa

Browse files
committed
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`.
1 parent 29c2043 commit f55e6aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/cleanup.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Delete untagged images
1515
uses: actions/delete-package-versions@v5
1616
with:
17-
package-name: ${{ github.repository }}
17+
package-name: ghcr.io/${{ github.repository }}
1818
package-type: container
19-
delete-only-untagged-versions: true
19+
delete-only-untagged-versions: "true"
2020
min-versions-to-keep: 0

0 commit comments

Comments
 (0)