Try App Version again

This commit is contained in:
Mike A. Trethewey
2020-02-27 01:17:04 -08:00
parent 74f3e89547
commit ee52953cca
2 changed files with 6 additions and 0 deletions

View File

@@ -115,6 +115,7 @@ jobs:
env:
OS_NAME: ${{ matrix.os-name }}
run: |
python ./build-app_version.py
python ./resources/ci/common/prepare_appversion.py
python ./resources/ci/common/prepare_release.py
# upload appversion artifact for later step

5
build-app_version.py Normal file
View File

@@ -0,0 +1,5 @@
from Main import __version__ as DRVersion
import os
with(open(os.path.join("resources","app","manifests","app_version.txt"))) as f:
f.write(DRVersion)