summaryrefslogtreecommitdiff
path: root/scripts/verify-tag
blob: b155211d69a30251805f8278210a272a7cc1ff1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

export GNUPGHOME=/etc/metadata/gnupg
mkdir -p $GNUPGHOME
export GPG=gpg2

git config --global gpg.program gpg2

tag=$(git tag -l "fidus-metadata-[0-9]*" | sort | tail -1)
if [ -z "$tag" ]; then
   echo "no matching tag found"
   exit 1
fi
git checkout $tag && git tag -v $tag