Skip to content

Commit d07fa9c

Browse files
authored
ci: offlinedocs: install protoc (#11148)
1 parent 45c0731 commit d07fa9c

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -568,6 +568,16 @@ jobs:
568568
with:
569569
directory: offlinedocs
570570

571+
- name: Install Protoc
572+
run: |
573+
mkdir -p /tmp/proto
574+
pushd /tmp/proto
575+
curl -L -o protoc.zip https://github.com/protocolbuffers/protobuf/releases/download/v23.3/protoc-23.3-linux-x86_64.zip
576+
unzip protoc.zip
577+
cp -r ./bin/* /usr/local/bin
578+
cp -r ./include /usr/local/bin/include
579+
popd
580+
571581
- name: Setup Go
572582
uses: ./.github/actions/setup-go
573583

0 commit comments

Comments
 (0)