From 6aa6fe90a38b874b58a1944d77970e4eaf118bbf Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Sun, 23 May 2021 02:21:27 +0200 Subject: [PATCH] Actions: Avoid error "would clobber existing tag" when pushing new tags --- .github/workflows/coverage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 7412e4b4..3da96eb0 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -68,7 +68,7 @@ jobs: wine32 - name: Unshallow Git clone run: | - git fetch --tags --unshallow origin # for "git describe" in coverage.sh + git fetch --force --tags --unshallow origin # for "git describe" in coverage.sh - name: Collect test coverage env: MODE: coverage-sh