forked from lix-project/lix
jade
c32a01f9eb
This can release x86_64-linux binaries to staging, with ephemeral keys.
I think it's good enough to review at least at this point, so we don't
keep adding more stuff to it to make it harder to review.
Change-Id: Ie95e8f35d1252f5d014e819566f170b30eda152e
7 lines
179 B
Python
7 lines
179 B
Python
import json
|
|
|
|
version_json = json.load(open('version.json'))
|
|
VERSION = version_json['version']
|
|
MAJOR = '.'.join(VERSION.split('.')[:2])
|
|
RELEASE_NAME = version_json['release_name']
|