From c1ecdc751494900ba8b53db6ffd3aa2f23dd323d Mon Sep 17 00:00:00 2001 From: Zack Galbreath Date: Fri, 17 May 2024 10:37:55 -0400 Subject: [PATCH] Fix cdash-worker Docker images for release tags (#2209) We were accidentally pushing cdash webservice images instead of cdash-worker images. --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e5fef6db7b..f5749d9f9a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,7 +30,7 @@ jobs: context: . push: true tags: "kitware/cdash-worker:${{ github.ref_name }}" - target: cdash + target: cdash-worker cache-from: type=gha cache-to: type=gha,mode=max @@ -58,6 +58,6 @@ jobs: context: . push: true tags: "kitware/cdash-worker:${{ github.ref_name }}-ubi" - target: cdash + target: cdash-worker cache-from: type=gha cache-to: type=gha,mode=max