From 7be29f609cbaf0a9ca00c078f1e8a02232072981 Mon Sep 17 00:00:00 2001 From: wuchyi <49750312+wuchyi@users.noreply.github.com> Date: Wed, 18 Sep 2024 02:37:39 +0800 Subject: [PATCH] Attempting to fix main-docker.yml for downloading digests (#243) * Update main-docker.yml (digests) Updated digest name on upload (as per 1187084) * Update main-docker.yml (digests download) Trying another fix based on the template provided here https://github.com/actions/download-artifact for downloading multiple (filtered) Artifacts to the same directory --- .github/workflows/main-docker.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main-docker.yml b/.github/workflows/main-docker.yml index 134e341..9b7701a 100644 --- a/.github/workflows/main-docker.yml +++ b/.github/workflows/main-docker.yml @@ -78,8 +78,10 @@ jobs: name: Download digests uses: actions/download-artifact@v4.1.7 with: - name: digests-${{ matrix.target }} path: /tmp/digests + pattern: digests-* + merge-multiple: true + - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3