Work on release scripts

This commit is contained in:
Timothy Baldridge
2022-05-23 13:54:46 -06:00
parent 14f379b474
commit a589c2e0d4
7 changed files with 35 additions and 5 deletions

View File

@ -1,5 +1,7 @@
import os
for line in open("CHANGELOG.md").readlines():
if (line.startswith("#### Version")):
print(line.split(" ")[3])
os.environ["VERSION"] = line.split(" ")[3]
break