From ac1551425d3fdf830698879eb85619d95fe72c1a Mon Sep 17 00:00:00 2001 From: jguer Date: Sat, 14 Sep 2024 18:29:10 +0200 Subject: [PATCH] fix backslash issues --- .github/workflows/builder-image.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/builder-image.yml b/.github/workflows/builder-image.yml index 860573a5..370a55d1 100644 --- a/.github/workflows/builder-image.yml +++ b/.github/workflows/builder-image.yml @@ -74,7 +74,7 @@ jobs: - name: Upload digest uses: actions/upload-artifact@v4 with: - name: digests-${{ matrix.platform }} + name: digest-${{ matrix.platform == 'linux/amd64' && 'amd64' || matrix.platform == 'linux/arm/v7' && 'armv7' || 'arm64' }} path: /tmp/digests/* if-no-files-found: error retention-days: 1 @@ -86,8 +86,9 @@ jobs: - name: Download digests uses: actions/download-artifact@v4 with: - path: /tmp/digests + pattern: digest-* merge-multiple: true + path: /tmp/digests - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3