Skip to content

Commit 9230df6

Browse files
fix: Added platforms field to build images' result (#211)
1 parent ace0801 commit 9230df6

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

firestarter/workflows/build_images/build_images.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,8 @@ async def compile_images_for_all_flavors(self):
493493
"registry": registry,
494494
"build_args": build_args,
495495
"workflow_run_id": self.workflow_run_id,
496-
"workflow_run_url": self.workflow_run_url
496+
"workflow_run_url": self.workflow_run_url,
497+
"platforms": platforms_to_build
497498
})
498499

499500
if len(results_list) == 0:
@@ -504,6 +505,7 @@ async def compile_images_for_all_flavors(self):
504505
)
505506

506507
yaml.default_flow_style = False
508+
yaml.representer.ignore_aliases = lambda *args: True
507509
with open(os.path.join("/tmp", self.output_results), "w") as f:
508510
yaml.dump(results_list, f)
509511

0 commit comments

Comments
 (0)