Skip to content

Commit d66b01d

Browse files
committed
Installs git in the proto generation workflow
The proto generation workflow requires git to be explicitly installed. This commit adds a step to install git before checking out the repository with the GitHub App.
1 parent 3456477 commit d66b01d

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/_gen_proto.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ jobs:
3434
timeout-minutes: 15
3535

3636
steps:
37+
- name: Install git
38+
run: |
39+
apt-get update && apt-get install -y git
40+
3741
- name: Checkout with GitHub App
3842
uses: zondax/_actions/checkout-with-app@main
3943
with:
@@ -44,7 +48,7 @@ jobs:
4448

4549
- name: Install bash and protobuf dependencies
4650
run: |
47-
apt-get update && apt-get install -y bash protobuf-compiler unzip git
51+
apt-get update && apt-get install -y bash protobuf-compiler unzip
4852
4953
- name: Setup Node environment
5054
uses: zondax/_actions/setup-node-env@main

0 commit comments

Comments
 (0)