Skip to content

Commit e2e494f

Browse files
authored
Install Protocol Buffers Compiler in workflow
Added installation step for Protocol Buffers Compiler in the CI workflow.
1 parent fae6e98 commit e2e494f

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/documentation.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ jobs:
1818
with:
1919
node-version: '24.1.0'
2020

21+
- name: Install Protocol Buffers Compiler
22+
run: |
23+
sudo apt-get update
24+
sudo apt-get install -y protobuf-compiler
25+
protoc --version
26+
2127
- name: Checkout Wiki repository
2228
uses: actions/checkout@v4
2329
with:

0 commit comments

Comments
 (0)