From 64d404bfbed7de7ca40b24c54b1c8434253442d1 Mon Sep 17 00:00:00 2001 From: umbynos Date: Thu, 20 May 2021 15:42:39 +0200 Subject: [PATCH] fix create-changelog action failing because it could not find a git repo 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