Skip to content

Commit 3da6abe

Browse files
authored
Update goreleaser (#16)
* Use correct goreleaser project name Doesn't look like there were any side-effects of having the wrong project name until now, fortunately. * Update goreleaser to v2.x This will hopefully fix the changelog issue we have been experiencing (where the entire commit history was appearing on the changelog).
1 parent 146f456 commit 3da6abe

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.github/workflows/github_tag_and_release.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,18 @@ jobs:
2828
-
2929
name: Checkout
3030
uses: actions/checkout@v2
31-
-
32-
name: Unshallow
33-
run: git fetch --prune --unshallow
31+
with:
32+
fetch-depth: 0
3433
-
3534
name: Set up Go
36-
uses: actions/setup-go@v1
35+
uses: actions/setup-go@v2
3736
with:
38-
go-version: 1.14.x
37+
go-version: 1.14
3938
-
4039
name: Run GoReleaser
41-
uses: goreleaser/goreleaser-action@v1
40+
uses: goreleaser/goreleaser-action@v2
4241
with:
4342
version: latest
4443
args: release --rm-dist
45-
key: ${{ secrets.YOUR_PRIVATE_KEY }}
4644
env:
4745
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
project_name: label-checker
2+
project_name: hoverfly-github-action
33
build:
44
skip: true
55
release:

0 commit comments

Comments
 (0)