Update package version to 1.86.0

This commit is contained in:
2025-09-15 13:06:31 +03:00
parent ca627a3d0e
commit 19890f453d
3 changed files with 22 additions and 8 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
# Gitlab repository
REPO="GNOME/gobject-introspection"
# 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.gnome.org/api/v4/projects/"$REPO"/releases/permalink/latest | jq -r '.tag_name')
echo "$TAG_NAME"