Skip to content

Commit 65f2289

Browse files
committed
chore(ci): fix issue with checkout action (#306)
(cherry picked from commit f6dbfb1)
1 parent 8b7974b commit 65f2289

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/release.yaml

+5-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,11 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- uses: actions/checkout@v4
23-
with:
24-
fetch-tags: true
23+
24+
# Workaround for actions/checkout#1467
25+
- name: Fetch tags
26+
run: |
27+
git fetch --tags --depth 1 --force
2528
2629
- name: Echo Go Cache Paths
2730
id: go-cache-paths

0 commit comments

Comments
 (0)