Skip to content

Commit 7b677fe

Browse files
authored
fix create-changelog action failing because it could not find a git repo (#648)
introduced in #639
1 parent 8b2f823 commit 7b677fe

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Diff for: .github/workflows/release.yml

+5
Original file line numberDiff line numberDiff line change
@@ -440,6 +440,11 @@ jobs:
440440
needs: code-sign-mac-installers
441441

442442
steps:
443+
- name: Checkout
444+
uses: actions/checkout@v2
445+
with:
446+
fetch-depth: 0 # fetch all history for the create changelog step to work properly
447+
443448
- name: Download artifact
444449
uses: actions/download-artifact@v2 # download all the artifacts
445450

0 commit comments

Comments
 (0)