ci: Add 'fetch-depth: 0' to build checkout action, probably fixes changelog for releases

This commit is contained in:
Jarno Rankinen 2024-03-08 00:29:39 +02:00
parent d1f734dd32
commit ef6627dae8
2 changed files with 6 additions and 2 deletions

View File

@ -12,12 +12,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.18.0'
- name: Add to release
- name: Build release binaries
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser

View File

@ -29,3 +29,4 @@ changelog:
exclude:
- "^docs:"
- "^test:"
- "^ci:"