0f82730a78
* version set from package.json and release bin names * support direnv virtualenv * versioned PlatformIO environment * matrix support for parralel CI * gather artifacts * release on tagging * minor scripts formatting
9 lines
201 B
Python
9 lines
201 B
Python
Import('env')
|
|
import json
|
|
|
|
PACKAGE_FILE = "package.json"
|
|
|
|
with open(PACKAGE_FILE, "r") as package:
|
|
version = json.load(package)["version"]
|
|
env.Append(BUILD_FLAGS=[f"-DWLED_VERSION={version}"])
|