From 11ebdfd266de3237db903a3461717a7c2fb1da02 Mon Sep 17 00:00:00 2001 From: Arlind Date: Sat, 22 Nov 2025 22:49:50 +0100 Subject: [PATCH] Update .gitea/actions/discover-skins/action.yml --- .gitea/actions/discover-skins/action.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitea/actions/discover-skins/action.yml b/.gitea/actions/discover-skins/action.yml index dc31aa3..a4179c1 100644 --- a/.gitea/actions/discover-skins/action.yml +++ b/.gitea/actions/discover-skins/action.yml @@ -28,9 +28,16 @@ runs: repository: ${{ github.repository }} ref: ${{ github.ref }} fetch-depth: 0 - fetch-tags: true path: . + - name: Fetch tags manually + shell: bash + run: | + echo "Manually fetching tags from Gitea…" + git fetch origin --tags --force --prune + echo "Tags after fetch:" + git tag -l + - name: Discover all skins id: discover_all shell: bash