Skip to content

Commit 3d0e413

Browse files
authored
ci: Fix tag pipeline by fetching the complete history (#98)
This is hopefully just a temporary fix for actions/checkout#1467
1 parent 4287390 commit 3d0e413

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: .github/workflows/docker.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ jobs:
2727
- name: Checkout Repository
2828
uses: actions/checkout@v4
2929
with:
30-
fetch-tags: true
30+
# Workaround for https://github.com/actions/checkout/issues/1467 as the
31+
# project is not that large:
32+
fetch-depth: 0
3133

3234
- name: Build Docker Image
3335
run: make build

0 commit comments

Comments
 (0)