From ada4e95e7ed9d0f093529b1e563fe9b539689182 Mon Sep 17 00:00:00 2001 From: AdamN <7974720+anr2me@users.noreply.github.com> Date: Wed, 16 Jul 2025 12:10:35 +0700 Subject: [PATCH] Use force when fetching tags from upstream, in case there are conflicting tags. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 89fa1dde16..35227b6d0e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -59,7 +59,7 @@ jobs: run: | # TODO: should try to fetch tags from whereever this repo was forked from before fetching from official repo git remote add upstream https://github.com/hrydgard/ppsspp.git - git fetch --deepen=15000 --no-recurse-submodules --tags upstream || exit 0 + git fetch --deepen=15000 --no-recurse-submodules --tags --force upstream || exit 0 - name: Create git-version.cpp for Windows # Not sure why the one at git-version-gen.cmd couldn't get the version properly. #if: github.ref_type == 'tag'