From 72b4b7f16c5dee4cabd6d4ed60c557e8e31caf43 Mon Sep 17 00:00:00 2001 From: Christoph Wille Date: Thu, 5 Nov 2020 19:25:34 +0100 Subject: [PATCH] We need the history See https://github.com/actions/checkout#Fetch-all-history-for-all-tags-and-branches (default is a shallow clone) --- .github/workflows/build-frontends.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-frontends.yml b/.github/workflows/build-frontends.yml index 329c9b41d..c97455c64 100644 --- a/.github/workflows/build-frontends.yml +++ b/.github/workflows/build-frontends.yml @@ -13,6 +13,8 @@ jobs: steps: - uses: actions/checkout@v2 + with: + fetch-depth: 0 - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: