Skip to content

Commit

Permalink
GH-21: Workflow experimets
Browse files Browse the repository at this point in the history
  • Loading branch information
negrutiu committed Jun 8, 2024
1 parent 31a132d commit d0fdb42
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,9 @@ jobs:
import os
with open('artifacts/versions.json') as fin:
with open(os.getenv('GITHUB_OUTPUT'), "a") as fout:
fout.write(f"versions_json={fin.read()}")
data = fin.read().decode('utf-8')
print(data)
fout.write(f"versions_json={data}")
- name: Prepare release notes
shell: python
Expand Down

0 comments on commit d0fdb42

Please sign in to comment.