We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41e9495 commit 66f0251Copy full SHA for 66f0251
.github/workflows/ci.yml
@@ -13,6 +13,8 @@ jobs:
13
steps:
14
- name: Checkout code
15
uses: actions/checkout@v3
16
+ with:
17
+ submodules: recursive # <-- 這行會讓它用 HTTPS 把 extern/faiss 拉下來
18
19
- name: Init submodules
20
run: git submodule update --init --recursive
.gitmodules
@@ -1,4 +1,4 @@
1
[submodule "extern/faiss"]
2
path = extern/faiss
3
- url = git@github.com:Seco1024/faiss.git
+ url = url = https://github.com/Seco1024/faiss.git
4
branch = bfs
0 commit comments