We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a78cfbf commit d742a11Copy full SHA for d742a11
main.py
@@ -21,7 +21,7 @@ def main():
21
files = []
22
for p in Path("./").iterdir():
23
files.append(p.name)
24
- all_files = "\n".join(files)
+ all_files = ",".join(files)
25
log_message(f"FILES_LISTING_1={all_files}")
26
27
log_message("MY_VAR1=foo")
0 commit comments