We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fe2be9 commit 6141ef2Copy full SHA for 6141ef2
1 file changed
entrypoint.py
@@ -44,8 +44,8 @@ def main() -> None:
44
print(feedback)
45
46
# Write the feedback to the environment file
47
- with open(os.environ['GITHUB_OUTPUT'], 'a') as f:
48
- out_string = f'feedback={feedback}'
+ with open(os.environ['GITHUB_OUTPUT'], 'a', encoding='utf-8') as f:
+ out_string = f'feedback<<EOF\n{feedback}\nEOF'
49
logging.info(f"Writing to GITHUB_OUTPUT: {f.write(out_string)} characters")
50
51
0 commit comments