Browse Source

CI: show checksums for built debs

master
Leonid Plyushch 5 years ago
parent
commit
c060b84fe8
No known key found for this signature in database GPG Key ID: 45F2964132545795
  1. 3
      .github/workflows/packages.yml

3
.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:

Loading…
Cancel
Save