signer script

This commit is contained in:
Yuri Zamyatin 2024-12-07 16:42:27 +00:00
parent f91c80ddaf
commit bcc7736af2
2 changed files with 17 additions and 4 deletions

View File

@ -1,10 +1,8 @@
#!/bin/sh
set -e
cd "$(dirname "$0")/.."
if [ ! -f "../../themes/yrzam/init/import-environment.sh" ]; then
echo "Wrong path" >&2
exit 1;
fi
[ -d ./themes/yrzam ] && cd ./themes/yrzam
VARS=$(printenv | \
grep -E 'THEME_.*' | \

15
init/sign.sh Normal file
View File

@ -0,0 +1,15 @@
#!/bin/bash
set -e
cd "$(dirname "$0")/.."
[ -d ../../themes ] && cd ../..
rm -rf public
hugo
cd public
find . -type f -exec sha256sum {} \; | \
sed -E 's/(\w*) \.\//\1 /' | \
gpg -so index.sig --batch --yes
cp -f index.sig ../static