Fix release creation by fetching tags
Some checks failed
Build Android APK / build (push) Failing after 3m0s

This commit is contained in:
2026-04-17 14:16:25 +02:00
parent e69a617a96
commit a299f081d5

View File

@@ -43,6 +43,9 @@ jobs:
- name: Create Release
run: |
# Fetch all tags from remote
git fetch --tags origin
# Get tag name from git
TAG_NAME=$(git describe --tags --abbrev=0 2>/dev/null || echo "")