We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2f75e0 commit b27ae2eCopy full SHA for b27ae2e
.github/workflows/release.yaml
@@ -24,10 +24,10 @@ jobs:
24
fetch-depth: 0
25
- name: Git Fetch
26
run: git fetch --force --tags
27
- - name: Set up Go
28
- uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
+ - name: Setup go
+ uses: actions/setup-go@v4
29
with:
30
- go-version: 1.20
+ go-version: stable
31
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
32
33
path: |
@@ -52,9 +52,10 @@ jobs:
52
username: ${{ github.actor }}
53
password: ${{ secrets.GITHUB_TOKEN }}
54
55
- - name: Run GoReleaser
56
- uses: goreleaser/goreleaser-action@336e29918d653399e599bfca99fadc1d7ffbc9f7 # v4.3.0
+ - name: Release with Goreleaser
+ uses: goreleaser/goreleaser-action@v4
57
58
+ distribution: goreleaser
59
version: latest
60
args: release --clean
61
env:
0 commit comments