#!/bin/bash export GNUPGHOME=/etc/metadata/gnupg mkdir -p $GNUPGHOME if [ $(lsb_release -is) == 'Debian' ]; then export GPG=gpg else export GPG=gpg2 fi git config --global gpg.program $GPG 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