Github action for automated tagging (release)

This commit is contained in:
Ben Meadors 2023-01-09 06:50:17 -06:00
parent 5ddb7cbbe7
commit 1da871fb2f
5 changed files with 115 additions and 1 deletions

8
scripts/buildinfo.py Executable file
View file

@ -0,0 +1,8 @@
#!/usr/bin/env python3
import configparser
import sys
from readprops import readProps
verObj = readProps('version.properties')
propName = sys.argv[1]
print(f"{verObj[propName]}")