Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
contrib/sign-release.sh: allow secret via stdin
Providing the secret via stdin has the advantage of not needing to store the secret in cleartext somewhere on the filesystem. Instead it can be decrypted on the fly and provided via stdin. A few examples: gpg -d singkey.gpg | contrib/sign-release.sh 3.0.6 age -d -i ~/.ssh/id_ed25519 signkey.age | ./contrib/sign-release.sh 3.0.6 gopass show signkey | ./contrib/sign-release.sh 3.0.6 keepassxc-cli show -k ~/db.key ~/db.kdbx signkey -a Password | contrib/sign-release.sh 3.0.6
- Loading branch information