Skip to content

Commit

Permalink
feat: temp
Browse files Browse the repository at this point in the history
Signed-off-by: LingKa <[email protected]>
  • Loading branch information
LingKa28 committed Feb 6, 2024
1 parent 12667a2 commit fe81adc
Showing 1 changed file with 20 additions and 14 deletions.
34 changes: 20 additions & 14 deletions .github/workflows/protobuf/action.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit fe81adc

Please sign in to comment.