File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 20
20
password : ${{ secrets.DOCKERHUB_TOKEN }}
21
21
- name : ⬇️ Checkout repo
22
22
uses : actions/checkout@v3
23
+ with :
24
+ submodules : recursive
23
25
24
26
- name : 🆚 Get the version
25
27
id : get_version
Original file line number Diff line number Diff line change 32
32
"generate" : " npm run protos" ,
33
33
"protos" : " npm run submodule && npm run protos:generate" ,
34
34
"protos:generate" : " ./scripts/generate-protos.sh" ,
35
- "submodule" : " git submodule sync --recursive && git submodule update --init --recursive" ,
35
+ "submodule" : " command -v git >/dev/null 2>&1 && git submodule sync --recursive && git submodule update --init --recursive || echo 'git not installed' " ,
36
36
"typecheck" : " tsc --noEmit" ,
37
37
"test" : " jest"
38
38
},
You can’t perform that action at this time.
0 commit comments