Use openssl dgst for Ed25519 (pkeyutl does not support the key type)

This commit is contained in:
Emil
2026-08-04 07:35:26 +03:00
parent c2c8336438
commit 78dacb7e17
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -111,8 +111,8 @@ jobs:
run: |
if [ -n "$KEY" ]; then
printf '%s\n' "$KEY" > /tmp/scimesh-sign-key.pem
openssl pkeyutl -sign -inkey /tmp/scimesh-sign-key.pem \
-in SHA256SUMS.txt -out SHA256SUMS.txt.sig
openssl dgst -sign /tmp/scimesh-sign-key.pem \
-out SHA256SUMS.txt.sig SHA256SUMS.txt
echo "signed SHA256SUMS.txt"
else
echo "SCIMESH_SIGNING_KEY is not set; releasing without a signature"