File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -162,11 +162,11 @@ def write_github_output(outputs: Outputs) -> None:
162162 return
163163
164164 with open (os .environ ["GITHUB_OUTPUT" ], "a" , encoding = "utf-8" ) as f :
165- f .write (f"run-cifuzz={ bool_lower (outputs .run_ci_fuzz )} " )
166- f .write (f"run-docs={ bool_lower (outputs .run_docs )} " )
167- f .write (f"run-hypothesis={ bool_lower (outputs .run_hypothesis )} " )
168- f .write (f"run-tests={ bool_lower (outputs .run_tests )} " )
169- f .write (f"run-win-msi={ bool_lower (outputs .run_win_msi )} " )
165+ f .write (f"run-cifuzz={ bool_lower (outputs .run_ci_fuzz )} \n " )
166+ f .write (f"run-docs={ bool_lower (outputs .run_docs )} \n " )
167+ f .write (f"run-hypothesis={ bool_lower (outputs .run_hypothesis )} \n " )
168+ f .write (f"run-tests={ bool_lower (outputs .run_tests )} \n " )
169+ f .write (f"run-win-msi={ bool_lower (outputs .run_win_msi )} \n " )
170170
171171
172172def bool_lower (value : bool , / ) -> str :
You can’t perform that action at this time.
0 commit comments