I’m trying to build a project which depends on another private repo on github (via npm using github:/<organization>/<project>
as the )
When I npm install
, it fails with ERROR: Repository not found. fatal: Could not read from remote repository.
So I added a github deploy key to that repo, and added that key to my Circle project.
I’m using Circle 2.0, so that key is automatically added to the ssh-agent running on my container, but for some reason, the npm install is still failing. Any idea where I went wrong?
Also, it’s worth noting that the docs say to use a user key for this, but I don’t think that’s a good solution, since it requires me to manage those credentials.