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