Skip to content

Commit

Permalink
.github: unpack all tarballs in artifacts/
Browse files Browse the repository at this point in the history
Signed-off-by: Joachim Wiberg <[email protected]>
  • Loading branch information
troglobit committed Nov 4, 2023
1 parent a74d408 commit e3caadf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,7 @@ jobs:
- uses: actions/download-artifact@v3
- name: Prepare Aritfacts
run: |
ls artifact/
for file in artifact/*.tgz; do
for file in $(find artifact/ -type f); do
tar xf $file
done
mkdir rootfs-oci
Expand Down

0 comments on commit e3caadf

Please sign in to comment.