Skip to content

Commit c05e929

Browse files
authored
Merge branch 'main' into tree-view-component
2 parents 9d3db70 + 6be1099 commit c05e929

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/publish-docker.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
password: ${{ secrets.DOCKERHUB_TOKEN }}
2121
- name: ⬇️ Checkout repo
2222
uses: actions/checkout@v3
23+
with:
24+
submodules: recursive
2325

2426
- name: 🆚 Get the version
2527
id: get_version

packages/otlp-importer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"generate": "npm run protos",
3333
"protos": "npm run submodule && npm run protos:generate",
3434
"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'",
3636
"typecheck": "tsc --noEmit",
3737
"test": "jest"
3838
},

0 commit comments

Comments
 (0)