Skip to content

Commit

Permalink
Fix changelog on releases (#908)
Browse files Browse the repository at this point in the history
By default, a shallow clone is done and git log does not have the full
log. Request a full clone to avoid that.
  • Loading branch information
vincentbernat committed Feb 6, 2024
1 parent f21facf commit de66703
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3
with:
Expand Down

0 comments on commit de66703

Please sign in to comment.