From 3074d7a70e3f2bc20734742e3c887962d4491e67 Mon Sep 17 00:00:00 2001 From: Umberto Baldi <34278123+umbynos@users.noreply.github.com> Date: Mon, 12 Jul 2021 17:38:21 +0200 Subject: [PATCH] fix create-changelog action failing because it could not find a git repo (#648) introduced in #639 --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7107094f3..84716f5d4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -440,6 +440,11 @@ jobs: needs: code-sign-mac-installers steps: + - name: Checkout + uses: actions/checkout@v2 + with: + fetch-depth: 0 # fetch all history for the create changelog step to work properly + - name: Download artifact uses: actions/download-artifact@v2 # download all the artifacts