Skip to content

Commit 65825fb

Browse files
authored
Merge pull request #9 from theguy147/checksums
Add hashsums.txt to CI
2 parents 6f6ef57 + b1b7863 commit 65825fb

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/build.yml

+7
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,12 @@ jobs:
217217
- name: Download all workflow run artifacts
218218
uses: actions/download-artifact@v3
219219

220+
- name: Compute hashsums and create hashsums.txt
221+
run: |
222+
(cd vmlinux && sha256sum *) > hashsums.txt
223+
(cd kernel-image && sha256sum *) >> hashsums.txt
224+
(cd rootfs && sha256sum *) >> hashsums.txt
225+
220226
- run: ls -lR
221227

222228
- name: Set output variables
@@ -235,3 +241,4 @@ jobs:
235241
vmlinux/*
236242
kernel-image/*
237243
rootfs/*
244+
hashsums.txt

0 commit comments

Comments
 (0)