Skip to content

Commit 209c6ff

Browse files
committed
fix: add sudo to install step
1 parent 8c4d32f commit 209c6ff

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/generate_stub.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ jobs:
1414
git fetch -u origin ${{ github.base_ref }}:${{ github.base_ref }}
1515
- name: Install dependencies
1616
run: |
17-
sudo apt-get update && apt-get install -y --no-install-recommends python3.9 protobuf-compiler-grpc
17+
sudo apt-get update
18+
sudo apt-get install -y --no-install-recommends python3.9 protobuf-compiler-grpc
1819
sudo ln -s /usr/bin/grpc_python_plugin /usr/bin/protoc-gen-grpc_python
1920
- name: clean
2021
run: make clean

0 commit comments

Comments
 (0)