Skip to content

Commit

Permalink
Merge pull request #9 from theguy147/checksums
Browse files Browse the repository at this point in the history
Add hashsums.txt to CI
  • Loading branch information
gsingh93 authored Apr 23, 2023
2 parents 6f6ef57 + b1b7863 commit 65825fb
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,12 @@ jobs:
- name: Download all workflow run artifacts
uses: actions/download-artifact@v3

- name: Compute hashsums and create hashsums.txt
run: |
(cd vmlinux && sha256sum *) > hashsums.txt
(cd kernel-image && sha256sum *) >> hashsums.txt
(cd rootfs && sha256sum *) >> hashsums.txt
- run: ls -lR

- name: Set output variables
Expand All @@ -235,3 +241,4 @@ jobs:
vmlinux/*
kernel-image/*
rootfs/*
hashsums.txt

0 comments on commit 65825fb

Please sign in to comment.