Skip to content

Commit

Permalink
Fix the release action pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Marin Dzhigarov committed Jan 13, 2025
1 parent a2d45ed commit d977ad6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@master
uses: actions/checkout@v4
-
name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: 1.22.0
go-version: 1.22.1
-
name: gofmt-check
run: GO111MODULE=on go run .ci/prebuild/gofmt_check.go
-
name: Binary release
uses: goreleaser/goreleaser-action@v2
uses: goreleaser/goreleaser-action@v6
with:
version: latest
args: release --rm-dist
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit d977ad6

Please sign in to comment.