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 1bb0e64 commit db18074
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/github_integration/gh_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ def get_input(name: str) -> str:
def set_output(name: str, value: str, default_output_path: str = "default_output.txt"):
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{value}EOF\n')


def set_failed(message: str):
Expand Down

0 comments on commit db18074

Please sign in to comment.