Skip to content

Commit

Permalink
GH-21: Workflow experiments
Browse files Browse the repository at this point in the history
  • Loading branch information
negrutiu committed Jun 8, 2024
1 parent fea5e30 commit 69b937a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,10 +201,12 @@ jobs:
shell: python
run: |
import os
import json
with open('artifacts/versions.json') as fin:
with open(os.getenv('GITHUB_OUTPUT'), "a") as fout:
data = fin.read()
print(data)
data = json.dumps(json.loads(data)) # reformat as one liner
fout.write(f"versions_json={data}")
- name: Prepare release notes
Expand Down

0 comments on commit 69b937a

Please sign in to comment.