💡Add .sha256 checksum files for each asset #1410
Labels
Priority: Normal
Minor issue impacting one or more users
Type: Feature Request
A big idea that would be split into smaller pieces
Describe the feature you'd like
For each asset in a release eg:
cloudflared-linux-arm64
there should be an associated checksum file eg:cloudflared-linux-arm64.sha256
that contains the checksum. This would make the process of validating the checksums much easier instead of having to parse thebody
of the release egcurl -s https://api.github.com/repos/cloudflare/cloudflared/releases/tags/2025.2.0 | jq -r .body
and then iterate through the list.Simply downloading
cloudflared-linux-arm64
andcloudflared-linux-arm64.sha256
and then comparing the output ofshasum -256 cloudflared-linux-arm64
to the value inside ofcloudflared-linux-arm64.sha256
would be a more straightforward process for doing this programatically.The text was updated successfully, but these errors were encountered: