ci: print guix hashes to summary

This commit is contained in:
tobtoht 2024-12-24 10:12:30 +01:00
parent 941ecefab2
commit e48c740d90
No known key found for this signature in database
GPG key ID: E45B10DD027D2472

View file

@ -98,6 +98,11 @@ jobs:
- uses: actions/download-artifact@v4
with:
merge-multiple: true
- name: print hashes
run: |
echo '```' >> $GITHUB_STEP_SUMMARY
find **/output/ -type f -print0 | env LC_ALL=C sort -z | xargs -r0 sha256sum >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
- uses: actions/upload-artifact@v4
with:
name: "logs"