Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

harmonize go releaser config versions #886

Merged
merged 1 commit into from Jan 11, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 5 additions & 6 deletions .github/workflows/release.yml
Expand Up @@ -14,21 +14,20 @@ jobs:
uses: actions/checkout@v2
with:
fetch-depth: 0
-
name: Set up Go
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.14
go-version: '^1.17'
-
name: Install Protoc
uses: arduino/setup-protoc@v1.1.2
with:
version: '3.12.3'
version: '3.14.0'
-
name: Install Protoc-gen-go
run: |
GO111MODULE=off go get github.com/golang/protobuf/protoc-gen-go@v1.4.2
GO111MODULE=off go get google.golang.org/grpc/cmd/protoc-gen-go-grpc@v0.0.0-20200617041141-9a465503579e
go install github.com/golang/protobuf/protoc-gen-go@v1.4.3
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.1.0
go mod tidy
-
name: Run GoReleaser
Expand Down