Consider this scenario:
- You have a private GitHub repository containing a package.
- Another repository depends on that package and installs it during the build process.
On your local machine, cloning works fine (apart from building wheels) because you already have the necessary SSH access but how to make that work in CI/CD?
A light read @ π
Priyaβs Devlogue
Accessing Private GitHub Repos in CircleCI
When setting up a CI/CD pipeline, you often need to work with private repositories. If one repository depends on code from another private GitHub r...

