From af772efcdffdfedb4704a330ce0ea351dfa1a54b Mon Sep 17 00:00:00 2001 From: Markus Kahl Date: Fri, 23 Jan 2026 13:57:26 +0000 Subject: [PATCH] fix accidental inclusion of slim-bim digest in slim tag due to amiguous merge pattern --- .github/workflows/docker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index b837e4a68fd..1b568f315a4 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -294,7 +294,7 @@ jobs: - name: Upload digest uses: actions/upload-artifact@v6 with: - name: digests-${{ inputs.tag }}-${{ matrix.target }}-${{ matrix.digest }} + name: digests-${{ inputs.tag }}-${{ matrix.target }}--${{ matrix.digest }} path: /tmp/digests/* if-no-files-found: error retention-days: 1 @@ -310,7 +310,7 @@ jobs: - name: Merge digests uses: actions/upload-artifact/merge@v6 with: - pattern: "digests-${{ inputs.tag }}-${{ matrix.target }}-${{ matrix.digest }}*" + pattern: "digests-${{ inputs.tag }}-${{ matrix.target }}--*" overwrite: true name: "merged-digests-${{ inputs.tag }}-${{ matrix.target }}-${{ github.run_number }}-${{ github.run_attempt }}" - name: Download digests