Fixed problem with manifest unkown.

Cause was the automated removal of untagged versions, which does not work with multi-arch containers.
See https://github.com/actions/delete-package-versions/issues/90
This commit is contained in:
Benjamin Harder
2024-03-27 21:44:24 +01:00
parent 1df5a06710
commit 571c4f64d2
2 changed files with 6 additions and 8 deletions

View File

@@ -72,12 +72,11 @@ jobs:
--build-arg IMAGE_TAG=$IMAGE_TAG \
--build-arg SHORT_COMMIT_ID=$SHORT_COMMIT_ID \
--push \
--each "docker tag {{.ImageID}} $IMAGE_NAME:$IMAGE_TAG-{{.TargetPlatform.Architecture}}"
- name: "Delete untagged versions"
uses: actions/delete-package-versions@v5
with:
package-name: 'decluttarr'
package-type: 'container'
delete-only-untagged-versions: 'true'
# - name: "Delete untagged versions"
# uses: actions/delete-package-versions@v4
# with:
# package-name: 'decluttarr'
# package-type: 'container'
# delete-only-untagged-versions: 'true'