Have created a multi-repo project. Aka each repo can execute seperately but also relies on other modules (which can also execute seperately) for specific tasks.
These are all stored in a private gitlab account/project/repo.
After doing some reading, it looks like GitLab don't support PA tokens for reading a private repo like Deno suggests.
Deplying manually with a Deploy Token works as expected aka
https://{username}:{token}@gitlab.com/{user}/{project}/{repo}.git
However, I'm looking to automate the deployment process as much as possible. So it'd be great to get any info required to make this possible. Is there an alternative method to achieving a simple import?
import { something } from 'https://gitlab.com/{user}/{project}/{repo}/mod.ts'
Is there something I'm missing? or is this only achievable manually/hooking into the GL API to automate it yourself/moving to a supported git solution (github)?