Skip to content

Commit d99e80d

Browse files
committed
Fix protoc
1 parent e129fd3 commit d99e80d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/pages.yml

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v4
1212
- uses: actions-rust-lang/setup-rust-toolchain@v1
13+
- name: Install protoc
14+
run: sudo apt-get install protobuf-compiler
1315
- name: Install wasm-pack
1416
run: cargo install wasm-pack
1517
- name: Build

.github/workflows/rust.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v3
1919
- name: Install protoc
20-
run: apt-get install protobuf-compiler
20+
run: sudo apt-get install protobuf-compiler
2121
- name: Build
2222
run: cargo build --verbose
2323
- name: Run tests

0 commit comments

Comments
 (0)