Skip to content

Commit

Permalink
build: clean up untagged GHCR images
Browse files Browse the repository at this point in the history
  • Loading branch information
eatyourgreens committed Jul 10, 2024
1 parent 5d1eb48 commit c4a4a37
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ghcr-cleanup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Clean up untagged GHCR images

on:
push:
branches:
- cleanup-ghcr
workflow_dispatch:

jobs:
ghcr-cleanup:
runs-on: ubuntu-latest
steps:
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Clean up untagged images
uses: quartx-analytics/ghcr-cleaner@v1
with:
owner-type: org # or user
token: ${{ secrets.GITHUB_TOKEN }}
repository-owner: ${{ github.repository_owner }}
package-name: jsrat-frontend
delete-untagged: true

0 comments on commit c4a4a37

Please sign in to comment.