Skip to content

Commit

Permalink
chore: wip
Browse files Browse the repository at this point in the history
Signed-off-by: Stephan Wendel <[email protected]>
  • Loading branch information
KwadFan committed Nov 2, 2023
1 parent a499b91 commit 4ecb19f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions scripts/setup_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,11 @@ def main():
f"The given group '{setup_group}' doesn't exist!"
)
else:
print(data[setup_group])
with open(os.environ['GITHUB_OUTPUT'], 'a') as gitout:
print(data, file=gitout)
with open(os.environ['GITHUB_OUTPUT'], 'a') as gitout:
print(data[setup_group], file=gitout)
with open(os.environ['GITHUB_STEP_SUMMARY'], 'a') as gitsum:
gitsum_header_msg(gitsum)
print(f'lorem ipsum', file=gitsum)
print(data[setup_group], file=gitsum)

except Exception as e:
with open(os.environ['GITHUB_STEP_SUMMARY'], 'a') as gitsum:
Expand Down

0 comments on commit 4ecb19f

Please sign in to comment.