From a231b9264493f0a6acda512016c9615cfb8215e3 Mon Sep 17 00:00:00 2001 From: Trenton H Date: Thu, 13 Oct 2022 15:58:31 -0700 Subject: [PATCH] Corrects the script name --- .github/workflows/cleanup-tags.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cleanup-tags.yml b/.github/workflows/cleanup-tags.yml index 993613ed1..308b7f2ed 100644 --- a/.github/workflows/cleanup-tags.yml +++ b/.github/workflows/cleanup-tags.yml @@ -15,7 +15,7 @@ on: push: paths: - ".github/workflows/cleanup-tags.yml" - - ".github/scripts/cleanup-images.py" + - ".github/scripts/cleanup-tags.py" - ".github/scripts/github.py" - ".github/scripts/common.py" @@ -74,7 +74,7 @@ jobs: name: Cleanup for package "${{ matrix.primary-name }}" if: "${{ env.TOKEN != '' }}" run: | - python ${GITHUB_WORKSPACE}/.github/scripts/cleanup-images.py --untagged --is-manifest "${{ matrix.primary-name }}" + python ${GITHUB_WORKSPACE}/.github/scripts/cleanup-tags.py --untagged --is-manifest --delete "${{ matrix.primary-name }}" # # Clean up registry cache package # @@ -82,7 +82,7 @@ jobs: name: Cleanup for package "${{ matrix.cache-name }}" if: "${{ env.TOKEN != '' }}" run: | - python ${GITHUB_WORKSPACE}/.github/scripts/cleanup-images.py --untagged "${{ matrix.cache-name }}" + python ${GITHUB_WORKSPACE}/.github/scripts/cleanup-tags.py --untagged --delete "${{ matrix.cache-name }}" # # Verify tags which are left still pull #