From fe81adc197476cada1c2425dfaf3d965f5a5e1b3 Mon Sep 17 00:00:00 2001 From: LingKa Date: Tue, 6 Feb 2024 16:31:15 +0800 Subject: [PATCH] feat: temp Signed-off-by: LingKa --- .github/workflows/protobuf/action.yaml | 34 +++++++++++++++----------- 1 file changed, 20 insertions(+), 14 deletions(-) diff --git a/.github/workflows/protobuf/action.yaml b/.github/workflows/protobuf/action.yaml index f624b22..2e78f0d 100644 --- a/.github/workflows/protobuf/action.yaml +++ b/.github/workflows/protobuf/action.yaml @@ -1,19 +1,25 @@ name: Generate API runs: - using: "composite" - steps: - - name: Install gRPC & gRPC tools - run: python3 -m pip install grpcio grpcio-tools - shell: bash + using: "composite" + steps: + - name: Install gRPC & gRPC tools + run: python3 -m pip install grpcio grpcio-tools + shell: bash - - name: Initialize Git Submodules - run: git submodule init - shell: bash - - name: Update Git Submodules - run: git submodule update - shell: bash + - name: Initialize Git Submodules + run: | + cd py-xline + git submodule init + shell: bash + - name: Update Git Submodules + run: | + cd py-xline + git submodule update + shell: bash - - name: Generate api - run: make - shell: bash + - name: Generate api + run: | + cd py-xline + make + shell: bash