diff --git a/check-version.sh b/check-version.sh new file mode 100644 index 0000000..0751869 --- /dev/null +++ b/check-version.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +# Pagure repository +REPO="xmlto" + +# Get tag name using Pagure Rest API +TAG_NAME=$(curl -s -L https://pagure.io/api/0/"$REPO"/git/tags | jq -r '.tags[0]') + +echo "$TAG_NAME"