CI: Add environment variables for edition to all pipelines (#58964)
Add environment variables to pipelines
This commit is contained in:
@@ -32,6 +32,7 @@ docs_paths = {
|
||||
}
|
||||
|
||||
def docs_pipelines(edition, ver_mode, trigger):
|
||||
environment = {'EDITION': edition}
|
||||
steps = [
|
||||
download_grabpl_step(),
|
||||
identify_runner_step(),
|
||||
@@ -42,7 +43,7 @@ def docs_pipelines(edition, ver_mode, trigger):
|
||||
]
|
||||
|
||||
return pipeline(
|
||||
name='{}-docs'.format(ver_mode), edition=edition, trigger=trigger, services=[], steps=steps,
|
||||
name='{}-docs'.format(ver_mode), edition=edition, trigger=trigger, services=[], steps=steps, environment=environment,
|
||||
)
|
||||
|
||||
def lint_docs():
|
||||
|
||||
Reference in New Issue
Block a user