From 1a78a85e3a253c6b44921e6c23587bbd9384f1d9 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Thu, 7 May 2020 18:46:13 +0200 Subject: [PATCH] Fix GitHub Actions complaining when moving tags --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c8751eeb..bd234f7c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,7 +32,7 @@ jobs: - uses: actions/checkout@v2 # Needed for git-describe to do anything useful - name: Fetch all git history - run: git fetch --prune --tags --unshallow + run: git fetch --force --prune --tags --unshallow - name: Determine build archive name run: | export ARCHIVE_NAME=yabridge-$(git describe --always)-ubuntu-18.04.tar.gz @@ -75,7 +75,7 @@ jobs: - uses: actions/checkout@v2 # Needed for git-describe to do anything useful - name: Fetch all git history - run: git fetch --prune --tags --unshallow + run: git fetch --force --prune --tags --unshallow - name: Determine build archive name run: | export ARCHIVE_NAME=yabridge-$(git describe --always).tar.gz