We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf08390 commit b99d881Copy full SHA for b99d881
1 file changed
openhexa/sdk/pipelines/utils.py
@@ -172,4 +172,9 @@ def get_local_workspace_config(path: Path):
172
if "image" in local_workspace_config:
173
env_vars["WORKSPACE_DOCKER_IMAGE"] = local_workspace_config["image"]
174
175
+ # Additional environment variables
176
+ if "env" in local_workspace_config:
177
+ for key, value in local_workspace_config["env"].items():
178
+ env_vars[key] = str(value)
179
+
180
return env_vars
0 commit comments