Skip to content

Commit 4569f72

Browse files
authored
fix(ci): submodule初期化をactions/checkoutに行わせる
git submodule update -i しているが error: unknown switch `i' と言われる。 https://github.com/cpprefjp/kunai/actions/runs/14290484780/job/40051001738
1 parent 8057d99 commit 4569f72

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ jobs:
2020

2121
steps:
2222
- uses: actions/checkout@v4
23-
- run: git submodule update -i
23+
with:
24+
submodules: true
2425

2526
- name: Use Node.js ${{ matrix.node-version }}
2627
uses: actions/setup-node@v4

0 commit comments

Comments
 (0)