Can I define private packages in the dependencies.yml file?
It depends on how you're accessing your private packages:
- If you're using native private packages, you can define them in the
dependencies.yml
file. - If you're using the git token method, you must define them in the
packages.yml
file instead of thedependencies.yml
file. This is because conditional rendering (like Jinja-in-yaml) is not supported independencies.yml
.
0