From 8face3036636c96ba2af787994d56e85644031c6 Mon Sep 17 00:00:00 2001 From: Chris Doherty Date: Sat, 13 Jan 2024 17:06:38 -0600 Subject: [PATCH] Patch CI upload and download Signed-off-by: Chris Doherty --- .github/workflows/ci.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3afcbed53..32fc355ba 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -61,7 +61,7 @@ jobs: run: make build -j$(nproc) GOOS=linux GOARCH=${{ matrix.platform }} - uses: actions/upload-artifact@v4 with: - name: binaries + name: ${{ matrix.platform }}-binaries path: bin/* package: name: Package @@ -95,10 +95,11 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Download all binaries - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: - name: binaries + name: *-binaries path: ./bin + merge-multiple: true # Artifact upload doesn't preserve permissions so we need to fix them before use in # the Dockerfiles. - name: Fix permissions