I have the below private git repo mentioned in the package.json variable:
git+ssh://git@github.com:knowyrtech/actions_param.git
I setup ssh keys on my Windows and I m able to authenticate and clone the repositories as below without any prompt / user-input:
Works -> git clone git@github.com:knowyrtech/actions_param.git
However, the below does not work and prompts for credentials which is the problem i wish to seek a solution for:
git+ssh://git@github.com:knowyrtech/actions_param.git
npm ci
It runs and then prompts asks me for authentication.
Can you please suggest?