From 78873bb4ed4884f035dc18942ac279586a5ff6c2 Mon Sep 17 00:00:00 2001 From: Yohsuke Fukai Date: Tue, 30 Jan 2024 22:45:49 +0900 Subject: [PATCH] update --- .github/workflows/delete-untagged-image.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/delete-untagged-image.yml b/.github/workflows/delete-untagged-image.yml index 9db10c2..6b99c45 100644 --- a/.github/workflows/delete-untagged-image.yml +++ b/.github/workflows/delete-untagged-image.yml @@ -11,13 +11,16 @@ jobs: delete-untagged-images: name: Delete Untagged Images runs-on: ubuntu-latest + strategy: + matrix: + image_name: [conda-jax, basicpy-docker-mcmicro] steps: - uses: bots-house/ghcr-delete-image-action@v1.1.0 with: # NOTE: at now only orgs is supported - owner: bots-house - name: some-web-service + owner: yfukai + name: ${{ matrix.image_name }} # NOTE: using Personal Access Token token: ${{ secrets.GITHUB_TOKEN }} # Keep latest N untagged images - untagged-keep-latest: 3 + untagged-keep-latest: 2