From e2ad36877ac9d96de9d1e6cb6c1030421f7b0627 Mon Sep 17 00:00:00 2001 From: Horst Gutmann Date: Mon, 11 Dec 2023 13:45:41 +0100 Subject: [PATCH] ci: Fix tag pipeline by fetching the complete history This is hopefully just a temporary fix for https://github.com/actions/checkout/issues/1467 --- .github/workflows/docker.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 2ce61ed..d0f6bfa 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -27,7 +27,9 @@ jobs: - name: Checkout Repository uses: actions/checkout@v4 with: - fetch-tags: true + # Workaround for https://github.com/actions/checkout/issues/1467 as the + # project is not that large: + fetch-depth: 0 - name: Build Docker Image run: make build