summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Pipping <sebastian@pipping.org>2021-05-23 03:12:46 +0200
committerGitHub <noreply@github.com>2021-05-23 03:12:46 +0200
commitfa12e73d0526546de349661d2076a74fd9e9f93d (patch)
treead6041996d1ceaed6b3ee01aa739f013b545f98c
parentac2b235d3cea96ed105bbfc0052ae9b79e8ccb78 (diff)
parent6aa6fe90a38b874b58a1944d77970e4eaf118bbf (diff)
downloadlibexpat-git-fa12e73d0526546de349661d2076a74fd9e9f93d.tar.gz
Merge pull request #489 from libexpat/actions-make-git-fetch-unshallow-robust-to-existing-tags
GitHub Actions: Avoid error "would clobber existing tag" when triggered by pushing a new Git tag
-rw-r--r--.github/workflows/coverage.yml2
1 files changed, 1 insertions, 1 deletions
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