25 lines
834 B
Bash
25 lines
834 B
Bash
|
#! /usr/bin/env nix-shell
|
||
|
#! nix-shell -i bash -p git gnupg
|
||
|
set -euo pipefail
|
||
|
|
||
|
TMPDIR="$(mktemp -d -p /tmp)"
|
||
|
trap "rm -rf $TMPDIR" EXIT
|
||
|
cd $TMPDIR
|
||
|
|
||
|
echo "Fetching latest release"
|
||
|
git clone https://github.com/romanz/electrs 2> /dev/null
|
||
|
cd electrs
|
||
|
latest=$(git describe --tags `git rev-list --tags --max-count=1`)
|
||
|
echo "Latest release is ${latest}"
|
||
|
|
||
|
# GPG verification
|
||
|
export GNUPGHOME=$TMPDIR
|
||
|
echo "Fetching Roman Zeyde's Key"
|
||
|
gpg --keyserver hkps://hkps.pool.sks-keyservers.net --recv-keys 15c8c3574ae4f1e25f3f35c587cae5fa46917cbb 2> /dev/null
|
||
|
echo "Verifying latest release"
|
||
|
git verify-tag ${latest}
|
||
|
|
||
|
echo "tag: ${latest}"
|
||
|
# The prefix option is necessary because GitHub prefixes the archive contents in this format
|
||
|
echo "sha256: $(git archive --format tar.gz --prefix=electrs-"${latest//v}"/ ${latest} | sha256sum | cut -d\ -f1)"
|