Skip to content

Commit

Permalink
Patch CI upload and download
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Doherty <[email protected]>
  • Loading branch information
chrisdoherty4 committed Jan 13, 2024
1 parent 4249063 commit 37dec94
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 37dec94

Please sign in to comment.