We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74c75c4 commit 55ffe63Copy full SHA for 55ffe63
.github/workflows/.goreleaser.yml
@@ -8,13 +8,16 @@ jobs:
8
runs-on: ubuntu-latest
9
steps:
10
- name: Checkout
11
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
12
+ with:
13
+ # we have to fetch all history to be able to generate the release note. c.f. https://goreleaser.com/ci/actions/.
14
+ fetch-depth: 0
15
- name: Set up Go
16
uses: actions/setup-go@v4
17
with:
18
go-version-file: 'go.mod'
19
- name: Run GoReleaser
- uses: goreleaser/goreleaser-action@v2
20
+ uses: goreleaser/goreleaser-action@v4
21
22
distribution: goreleaser
23
version: 1.17.1
0 commit comments