Skip to content

Commit 1857ba6

Browse files
committed
Explicitly fetch tags after checkout
Workaround for actions/checkout#882
1 parent e37b28f commit 1857ba6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ jobs:
1616
# We use tags to determine version, so fetch them
1717
fetch-depth: 0
1818
fetch-tags: true
19+
# Workaround for https://github.com/actions/checkout/issues/882
20+
- name: Explicitly fetch tags
21+
run: git fetch --force --tags
1922
- name: Prepare artifact store
2023
run: mkdir -p ./buck-out/gen
2124
- name: Build ubuntu18to20

0 commit comments

Comments
 (0)