Rebuild with libxml2 2.15.0

This commit is contained in:
2025-09-18 12:18:02 +03:00
parent bf52e8afa3
commit 3da9af8697
3 changed files with 17 additions and 8 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
# Gitlab repository
REPO="xdg/shared-mime-info"
# Replace slash with URL encoded representation
REPO=$(echo "$REPO" | sed 's|/|%2F|g')
# Get tag name using Gitlab Rest API
TAG_NAME=$(curl -s -L https://gitlab.freedesktop.org/api/v4/projects/"$REPO"/repository/tags | jq -r '.[0].name')
echo "$TAG_NAME"