refactor: Update Vertex class to store artifacts in a dictionary
This commit is contained in:
parent
2efa10ed37
commit
fa68a8fee6
1 changed files with 1 additions and 0 deletions
|
|
@ -661,6 +661,7 @@ class Vertex:
|
|||
self._custom_component, self._built_object, self.artifacts = result
|
||||
self.artifacts_raw = self.artifacts.get("raw", None)
|
||||
self.artifacts_type = self.artifacts.get("type", None) or ArtifactType.UNKNOWN.value
|
||||
self.artifacts = {self.outputs[0]["name"]: self.artifacts}
|
||||
self.logs = build_logs(self)
|
||||
else:
|
||||
self._built_object = result
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue