Skip to content

Commit

Permalink
fix: used sha256 to generate the checksum for the rootfs.img
Browse files Browse the repository at this point in the history
Signed-off-by: yash-zededa <[email protected]>
  • Loading branch information
yash-zededa committed Oct 28, 2024
1 parent 4bdf1c0 commit 775ee6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
for asset in assets/*; do
mv "$asset" "assets/${{ env.ARCH }}.$(basename "$asset")"
done
md5sum "assets/${{env.ARCH}}.rootfs.img" > assets/"${{env.ARCH}}.rootfs.img.md5"
sha256sum "assets/${{ env.ARCH }}.rootfs.img" | awk '{ print $1 }' > "assets/${{ env.ARCH }}.rootfs.img.sha256"
- name: Upload binary to GitHub Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 775ee6b

Please sign in to comment.