From 7d3f12e34ef637d7f4a7682ebc0aba7e1ffe4210 Mon Sep 17 00:00:00 2001 From: crozzy Date: Wed, 1 May 2024 11:37:38 -0700 Subject: [PATCH] chore: use the merge-multiple directive when downloading binaries From the docs: When multiple artifacts are matched, this changes the behavior of the destination directories. If true, the downloaded artifacts will be in the same directory specified by path. If false, the downloaded artifacts will be extracted into individual named directories within the specified path. So essentially, the artifacts were being downloaded into different dirs and hence the release failure. Signed-off-by: crozzy --- .github/workflows/cut-release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/cut-release.yml b/.github/workflows/cut-release.yml index 9f7f4a5674..7b6373854d 100644 --- a/.github/workflows/cut-release.yml +++ b/.github/workflows/cut-release.yml @@ -250,6 +250,7 @@ jobs: id: download with: pattern: clairctl-* + merge-multiple: true - name: Publish clairctl-${{matrix.goos}}-${{matrix.goarch}} uses: actions/upload-release-asset@v1 env: