Skip to content

Commit

Permalink
- Changes from CI testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
miroslavpojer committed Jun 14, 2024
1 parent 4b5af5a commit 021286e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/github_integration/gh_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def set_output(name: str, value: str, default_output_path: str = "default_output
output_file = os.getenv('GITHUB_OUTPUT', default_output_path)
with open(output_file, 'a') as f:
# f.write(f'{name}={value}\n')
f.write(f'{name}<<EOF{value}EOF\n')
f.write(f'{name}={value}\n')


def set_failed(message: str):
Expand Down

0 comments on commit 021286e

Please sign in to comment.