Fixed
- Docker: removed cleanup workflow that was deleting multi-arch platform manifests, making all Docker images unpullable (#74, #76)
The daily docker-cleanup.yml workflow used actions/delete-package-versions to prune untagged container versions. Unfortunately, multi-arch images store each platform manifest (amd64, arm64, arm/v7) as an untagged version under the tagged manifest list. The cleanup action treated those as orphans and deleted them, breaking every tagged image pull. The workflow has been removed. A multi-arch aware replacement is tracked in #77.
Thanks
- @marcelorodrigo for reporting the broken Docker images (#74)
- @mtcerio for the additional report (#76)