From 9d3baeb25d2441ce0c513abdc1ba7066594ee31f Mon Sep 17 00:00:00 2001 From: Michael Mell Date: Wed, 6 Mar 2024 12:52:03 +0100 Subject: [PATCH] Fetch all Git information so git describe works in the pre-build script. --- .github/workflows/release-build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index 0028976..68cbf07 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -26,6 +26,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4.1.1 + with: + fetch-depth: 0 - name: setup-msbuild uses: microsoft/setup-msbuild@v2