Update check-version.sh script

This commit is contained in:
2025-12-18 19:47:07 +02:00
parent 5fd5b30612
commit b62d1b5495
+4 -1
View File
@@ -6,7 +6,10 @@ REPO="xfce/xfce4-panel"
# Replace slash with URL encoded representation # Replace slash with URL encoded representation
REPO=$(echo "$REPO" | sed 's|/|%2F|g') REPO=$(echo "$REPO" | sed 's|/|%2F|g')
# Get XFCE version
XFCE_VERSION=$(bpm q -d xfce4 | grep '^Version: ' | cut -d' ' -f2 | cut -d'-' -f1)
# Get tag name using Gitlab Rest API # Get tag name using Gitlab Rest API
TAG_NAME=$(curl -s -L https://gitlab.xfce.org/api/v4/projects/"$REPO"/repository/tags | jq -r '.[].name' | cut -d'-' -f3 | grep -v 'pre' | sort -V | tail -n1) TAG_NAME=$(curl -s -L https://gitlab.xfce.org/api/v4/projects/"$REPO"/repository/tags | jq -r '.[].name' | cut -d'-' -f3 | grep "^${XFCE_VERSION}" | head -n1)
echo "$TAG_NAME" echo "$TAG_NAME"