Skip to content

Commit aa5ef8a

Browse files
committed
ci: workaround actions/checkout#1467
1 parent 6d741eb commit aa5ef8a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/dist.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,11 @@ jobs:
175175
steps:
176176
- uses: actions/checkout@v4
177177
with:
178-
fetch-tags: true # for git-describe to work
178+
# for git-describe to work, but also https://github.com/actions/checkout/issues/1467
179+
# fetch-tags: true
180+
fetch-depth: 0
181+
- name: Fetch Git tags
182+
run: git fetch --tags --force
179183
- name: Reproducibly pack the sources
180184
id: pack_sources
181185
run: ./scripts/make-reproducible-source-tarball.sh /tmp

0 commit comments

Comments
 (0)