More fixes for CI/CD

This commit is contained in:
Daniel Pupius
2025-05-02 13:20:57 -07:00
parent 5cae8fd5cf
commit 23deefe061
5 changed files with 78 additions and 67 deletions

View File

@@ -23,9 +23,6 @@ jobs:
go-version: ${{ env.GO_VERSION }}
cache: true
- name: Cleanup any old data
run: make clean
- name: Install Protocol Buffers Compiler
run: |
sudo apt-get update

View File

@@ -25,7 +25,12 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y protobuf-compiler
- name: Install protoc-gen-go
run: |
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Generate Protocol Buffers
run: make gen-proto