Hi,
Would it be possible to publish the .sha256 files in a format that could to be used with the sha256sum -c tool?
$ sha256sum -c micromamba-linux-64.sha256
sha256sum: micromamba-linux-64.sha256: no properly formatted SHA256 checksum lines found
$ echo $?
1
You would have to modify the file to add the filename next to the sha256, like here:
$ cat micromamba-linux-64.sha256
ffc3cb8d52d4d6b354bdbb979c407719c485392b74e462cbd50811aa88e58f85 micromamba-linux-64
Then the validation would work:
$ sha256sum -c micromamba-linux-64.sha256
micromamba-linux-64: OK
$ echo $?
0