Dynamically include variable groups for each env
#build-stage.yml
stages:
- stage: Build
${{ if eq(parameters.enableVariableGroups, 'true') }}:
variables:
- ${{ each group in parameters.variableGroupNames }}:
- group: ${{ group }}
df
#main-pipeline.yml
stages:
- templa...
arsalanz.hashnode.dev1 min read