Skip to content

Commit d252982

Browse files
committed
Checkout submodules in separate step
1 parent 03cb049 commit d252982

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
run: |
1919
python3 --version
2020
- uses: actions/checkout@v3
21-
with:
22-
submodules: true
21+
- name: checkout submodules
22+
run: git submodule update --init --jobs 16 --depth 1
2323
- name: Translate Repo Name For Build Tools filename_prefix
2424
id: repo-name
2525
run: |

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020
run: |
2121
python3 --version
2222
- uses: actions/checkout@v3
23-
with:
24-
submodules: true
23+
- name: checkout submodules
24+
run: git submodule update --init --jobs 16 --depth 1
2525
- name: Translate Repo Name For Build Tools filename_prefix
2626
id: repo-name
2727
run: |

0 commit comments

Comments
 (0)