From dac411f7d61290afcd6f1a226f60ead33acfe82f Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Thu, 6 Jan 2022 14:21:58 -0500 Subject: [PATCH] Attempt to fix erroneous build cancellation (#1867) --- .github/workflows/images.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/images.yaml b/.github/workflows/images.yaml index af9c75124..344832748 100644 --- a/.github/workflows/images.yaml +++ b/.github/workflows/images.yaml @@ -15,7 +15,7 @@ jobs: # previous run if it's on the same commit SHA. This prevents a run for a # commit push from cancelling a previous commit push's build, since we # want an image built and tagged for each commit. - group: build-images-${{ github.head_ref || github.sha }} + group: build-images-${{ matrix.image }}-${{ github.head_ref || github.sha }} cancel-in-progress: true permissions: contents: read # Read the repo contents.