Skip to content

Commit e78a81c

Browse files
authored
1 parent cc620a3 commit e78a81c

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,17 @@ jobs:
2626
with:
2727
targets: ${{ matrix.target }}
2828

29+
- name: Install protoc on Ubuntu
30+
if: matrix.os == 'ubuntu-latest'
31+
run: |
32+
sudo apt-get update
33+
sudo apt-get install -y protobuf-compiler
34+
35+
- name: Install protoc on macOS
36+
if: matrix.os == 'macos-latest'
37+
run: |
38+
brew install protobuf
39+
2940
- name: Build release binary
3041
run: cargo build --release --bin zombie-cli --target ${{ matrix.target }}
3142

0 commit comments

Comments
 (0)