From bdc73223079d90b033e26f6975b343b95e53f294 Mon Sep 17 00:00:00 2001 From: Leonid Pliushch Date: Thu, 12 Mar 2020 19:02:16 +0200 Subject: [PATCH] CI: show checksums for built debs --- .github/workflows/packages.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index 8fbe2b18ff..5aa0cbba9b 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -92,6 +92,9 @@ jobs: # Files containing certain symbols (e.g. ":") will cause failure in actions/upload-artifact. # Archiving *.deb files in a tarball to avoid issues with uploading. tar cf artifacts/debs-${{ matrix.target_arch }}.tar debs + - name: Checksums for built *.deb files + run: | + find debs -type f -name "*.deb" -exec sha256sum "{}" \; | sort -k2 - name: Store *.deb files uses: actions/upload-artifact@v1 with: