How to use dynamic variables with a CI/CD component?

I calculate RELEASE_NAME variable in a script.

How can I pass this variable to a CI/CD component?

Regular includes are all evaluated up front as the pipeline is loaded - way before the variable will be set.

Passing it via a trigger to a child pipeline which can take it as an input is really the most plausible way forward.

1 Like