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 23a233d commit e4d3678
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/github_integration/gh_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ 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}={value}\n")
# f.write(f"{name}<<EOF\n")
# f.write(f"{value}")
# f.write(f"EOF\n")
# f.write(f"{name}={value}\n")
f.write(f"{name}<<EOF\n")
f.write(f"{value}")
f.write(f"EOF\n")


def set_failed(message: str):
Expand Down

0 comments on commit e4d3678

Please sign in to comment.