ci: add extra steps to check artifacts

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
(cherry picked from commit 113e95ec02)
This commit is contained in:
CrazyMax 2022-12-26 18:37:06 +01:00
parent 8fbfc2676f
commit 3ef71f9085
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7

View file

@ -45,6 +45,14 @@ jobs:
uses: docker/bake-action@v2
with:
targets: ${{ matrix.target }}
-
name: List artifacts
run: |
tree -nh ${{ env.DESTDIR }}
-
name: Check artifacts
run: |
find ${{ env.DESTDIR }} -type f -exec file -e ascii -- {} +
-
name: Upload artifacts
uses: actions/upload-artifact@v3
@ -105,6 +113,14 @@ jobs:
targets: binary
set: |
*.platform=${{ matrix.platform }}
-
name: List artifacts
run: |
tree -nh ${{ env.DESTDIR }}
-
name: Check artifacts
run: |
find ${{ env.DESTDIR }} -type f -exec file -e ascii -- {} +
-
name: Upload artifacts
uses: actions/upload-artifact@v3