Skip to content

Commit

Permalink
Pass config path during zenml pipeline build
Browse files Browse the repository at this point in the history
  • Loading branch information
schustmi committed Nov 22, 2024
1 parent 7c1ab97 commit c7bc6bc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/zenml/pipelines/pipeline_definition.py
Original file line number Diff line number Diff line change
Expand Up @@ -535,8 +535,9 @@ def build(
with track_handler(event=AnalyticsEvent.BUILD_PIPELINE):
self._prepare_if_possible()
deployment, _, _ = self._compile(
config_path=config_path,
steps=step_configurations,
config_path=config_path or self._run_args.get("config_path"),
steps=step_configurations
or self._run_args.get("step_configurations"),
settings=settings,
)
pipeline_id = self._register().id
Expand Down

0 comments on commit c7bc6bc

Please sign in to comment.