Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion firestarter/workflows/build_images/build_images.py
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,8 @@ async def compile_images_for_all_flavors(self):
"registry": registry,
"build_args": build_args,
"workflow_run_id": self.workflow_run_id,
"workflow_run_url": self.workflow_run_url
"workflow_run_url": self.workflow_run_url,
"platforms": platforms_to_build
})

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

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

Expand Down
Loading