Skip to content

Commit

Permalink
.github: download all artifacts for run
Browse files Browse the repository at this point in the history
Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
  • Loading branch information
troglobit committed Aug 2, 2024
1 parent 3440ac2 commit 512dc76
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
platform=${{ matrix.platform }}
plat="${platform#linux/}"
arch="$(echo $plat | sed 's,/,,')"
echo "arch=$arch" >> $GITHUB_OUTPUT
echo "name=digest-$arch" >> $GITHUB_OUTPUT
mkdir -p /tmp/digests
digest="${{ steps.build.outputs.digest }}"
fn="/tmp/digests/${digest#sha256:}"
Expand All @@ -72,7 +72,7 @@ jobs:
- name: Upload digest
uses: actions/upload-artifact@v4
with:
name: ${{ steps.digest.outputs.arch }}
name: ${{ steps.digest.outputs.name }}
path: /tmp/digests/*
if-no-files-found: error
retention-days: 1
Expand All @@ -84,7 +84,6 @@ jobs:
- name: Download digests
uses: actions/download-artifact@v4
with:
name: digests
path: /tmp/digests
merge-multiple: true
- name: Set up Docker Buildx
Expand Down

0 comments on commit 512dc76

Please sign in to comment.