We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ace0801 commit 9230df6Copy full SHA for 9230df6
1 file changed
firestarter/workflows/build_images/build_images.py
@@ -493,7 +493,8 @@ async def compile_images_for_all_flavors(self):
493
"registry": registry,
494
"build_args": build_args,
495
"workflow_run_id": self.workflow_run_id,
496
- "workflow_run_url": self.workflow_run_url
+ "workflow_run_url": self.workflow_run_url,
497
+ "platforms": platforms_to_build
498
})
499
500
if len(results_list) == 0:
@@ -504,6 +505,7 @@ async def compile_images_for_all_flavors(self):
504
505
)
506
507
yaml.default_flow_style = False
508
+ yaml.representer.ignore_aliases = lambda *args: True
509
with open(os.path.join("/tmp", self.output_results), "w") as f:
510
yaml.dump(results_list, f)
511
0 commit comments