[READ-ONLY] Mirror of https://github.com/jackmawer/caddy.
0

Configure Feed

Select the types of activity you want to include in your feed.

Revert cleanup job

authored by

Jack and committed by
GitHub
(Nov 11, 2025, 8:04 PM UTC) b7e33ee0 4745f2ce

+1 -25
+1 -25
.github/workflows/docker.yml
··· 273 273 # The inspection output will show the platforms and tags associated with the manifest list. 274 274 id: inspect 275 275 run: | 276 - docker buildx imagetools inspect '${{ env.GHCR_IMAGE }}:${{ steps.meta.outputs.version }}' 277 - 278 - clean: 279 - # This job cleans up untagged/old tags, since these are private images and I won't be referencing old tags. 280 - name: Cleanup old tags 281 - runs-on: ubuntu-latest 282 - permissions: 283 - packages: write 284 - 285 - needs: 286 - - merge 287 - # Depend on the merge job to ensure the image is built before cleanup. 288 - steps: 289 - - name: Cleanup untagged images 290 - # This step downloads the digest files uploaded in the build job. 291 - # It uses the actions/download-artifact action to download the artifacts with the pattern digests-*. 292 - # The downloaded files are merged into the /tmp/digests directory. 293 - uses: quartx-analytics/ghcr-cleaner@v1 294 - with: 295 - owner-type: user 296 - token: ${{ github.token }} 297 - repository_owner: ${{ github.repository_owner }} 298 - repository-name: ${{ github.repository }} 299 - delete-untagged: true 300 - keep-at-most: 5 276 + docker buildx imagetools inspect '${{ env.GHCR_IMAGE }}:${{ steps.meta.outputs.version }}'