Skip to content

Commit 1a78a85

Browse files
committed
Fix GitHub Actions complaining when moving tags
1 parent 7ba9a53 commit 1a78a85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- uses: actions/checkout@v2
3333
# Needed for git-describe to do anything useful
3434
- name: Fetch all git history
35-
run: git fetch --prune --tags --unshallow
35+
run: git fetch --force --prune --tags --unshallow
3636
- name: Determine build archive name
3737
run: |
3838
export ARCHIVE_NAME=yabridge-$(git describe --always)-ubuntu-18.04.tar.gz
@@ -75,7 +75,7 @@ jobs:
7575
- uses: actions/checkout@v2
7676
# Needed for git-describe to do anything useful
7777
- name: Fetch all git history
78-
run: git fetch --prune --tags --unshallow
78+
run: git fetch --force --prune --tags --unshallow
7979
- name: Determine build archive name
8080
run: |
8181
export ARCHIVE_NAME=yabridge-$(git describe --always).tar.gz

0 commit comments

Comments
 (0)