From 3d8293dbf40d2d940a89850ecc87b8c6e1fa0772 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Sun, 24 Oct 2021 15:57:45 +0200 Subject: [PATCH] gci: Add `-f` flag to git fetch This avoids the warning of clobbering tags when fetching tags Changelog-None --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d655ff7f1..89c39b079 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -31,7 +31,7 @@ jobs: uses: actions/checkout@v2.0.0 - name: Fetch tags for auto versioning - run: git fetch --prune --unshallow --tags + run: git fetch --prune --unshallow --tags -f - name: Set up Python 3.6 uses: actions/setup-python@v2