Read changelog from file in workflow --nobuild

This commit is contained in:
Willy-JL
2024-05-17 05:50:38 +01:00
parent 38f4c7bb0e
commit 44155eb851

View File

@@ -14,7 +14,9 @@ if __name__ == "__main__":
}
).json()
version_tag = release["tag_name"]
changelog = release["body"]
with open("ChangeLog.md", "r") as f:
changelog = f.read()
notes_path = '.github/workflow_data/release.md'
with open(notes_path, "r") as f: