Hi!
I have git repo on GitLab.
This repo has git submodule “common”.
I want install this submodule on app deployment.
I added new hook:
cd {{ releasePath }}
git submodule update --init --recursive
after default Copy Project hook.
Have next error:
git@gitlab.com: Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
Could anybody help with this?
Maybe I can change default hook “Copy Project” somehow to add --recurse-submodules flag to git clone command?