mirror of
https://git.quad4.io/RNS-Things/MeshChatX.git
synced 2026-04-26 00:12:14 +00:00
31 lines
749 B
Bash
31 lines
749 B
Bash
#!/usr/bin/env bash
|
|
# Emit base64-encoded sha256sum lines for files in ./release-assets (SLSA generic generator input).
|
|
# Excludes *.cosign.bundle. Writes "hashes=<base64>" to GITHUB_OUTPUT when set.
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "$0")/../.."
|
|
if [ ! -d release-assets ]; then
|
|
echo "release-assets/ missing" >&2
|
|
exit 1
|
|
fi
|
|
|
|
tmp="$(mktemp)"
|
|
trap 'rm -f "$tmp"' EXIT
|
|
|
|
(
|
|
cd release-assets
|
|
find . -maxdepth 1 -type f ! -name '*.cosign.bundle' -printf '%P\0' | sort -z | xargs -0 sha256sum
|
|
) >"$tmp"
|
|
|
|
if [ ! -s "$tmp" ]; then
|
|
echo "No files to hash under release-assets/" >&2
|
|
exit 1
|
|
fi
|
|
|
|
b64="$(base64 -w0 <"$tmp")"
|
|
if [ -n "${GITHUB_OUTPUT:-}" ]; then
|
|
echo "hashes=${b64}" >>"$GITHUB_OUTPUT"
|
|
else
|
|
printf '%s\n' "$b64"
|
|
fi
|