diff --git a/doc/forum/Submodule_.git_not_converted_to_symlink/comment_3_636fe0ff273cd8987168e3095929aa7f._comment b/doc/forum/Submodule_.git_not_converted_to_symlink/comment_3_636fe0ff273cd8987168e3095929aa7f._comment new file mode 100644 index 0000000000..ab1ae150c3 --- /dev/null +++ b/doc/forum/Submodule_.git_not_converted_to_symlink/comment_3_636fe0ff273cd8987168e3095929aa7f._comment @@ -0,0 +1,15 @@ +[[!comment format=mdwn + username="athas@60e56fd42a78bbbce444d175865ce4d66ba1a779" + nickname="athas" + avatar="http://cdn.libravatar.org/avatar/f6ddda1fabf459f90ca590f9499033c4" + subject="GitHub Actions" + date="2021-10-15T20:53:06Z" + content=""" +It appears the `checkout` action on GitHub Actions mangles submodules that use `git-annex`. The solution is to ask the checkout action to do a deep clone: + + - uses: actions/checkout@v2 + with: + submodules: recursive # for git-annex to work. + fetch-depth: 0 # + +"""]]