ci: fix python step truncating GITHUB_ENV

This commit is contained in:
Thibault VINCENT
2022-09-20 11:46:44 +02:00
parent 7c4f250d16
commit 4bb24e526f
+1 -1
View File
@@ -672,7 +672,7 @@ jobs:
output = yaml.dump(entries)
print(output)
with open(os.environ['GITHUB_ENV'], 'w') as outfile:
with open(os.environ['GITHUB_ENV'], 'a') as outfile:
outfile.write('ARTIFACTHUB_CHANGELOG<<EOF\n')
outfile.write(output)
outfile.write('EOF\n')