From 3db3075ca9d94f2ca2c55a2ef2c1dce5e333d45c Mon Sep 17 00:00:00 2001 From: dangilcal Date: Fri, 17 Apr 2026 14:32:30 +0200 Subject: [PATCH] Fix tag fetch in pipeline --- .gitea/workflows/android.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/android.yml b/.gitea/workflows/android.yml index 9b2fa3a..332f1f8 100644 --- a/.gitea/workflows/android.yml +++ b/.gitea/workflows/android.yml @@ -43,8 +43,8 @@ jobs: - name: Create Release run: | - # Fetch all tags from remote - git fetch --tags origin + # Fetch the specific tag from remote + git fetch origin tag v0.2.0 --force # Get tag name from git TAG_NAME=$(git describe --tags --abbrev=0 2>/dev/null || echo "")