mirror of
https://github.com/boneIO-eu/esphome.git
synced 2026-04-17 13:10:27 +02:00
fixes for esphome 2026.4 release
This commit is contained in:
@@ -40,7 +40,9 @@ include_files = [
|
||||
|
||||
|
||||
GITHUB_PAGES_URL = "https://boneio-eu.github.io/esphome"
|
||||
FIRMWARE_VERSION = "2026.1.2"
|
||||
ESPHOME_VERSION = "2026.4.0"
|
||||
ESPHOME_DOCKER_IMAGE = f"ghcr.io/esphome/esphome:{ESPHOME_VERSION}"
|
||||
FIRMWARE_VERSION = ESPHOME_VERSION
|
||||
|
||||
|
||||
def json_pattern(firmware_name, chip_family="ESP32"):
|
||||
@@ -93,7 +95,7 @@ for file in glob.glob("*.yaml"):
|
||||
print("No file found.")
|
||||
break
|
||||
firmware_path = f"{cwd}/.esphome/build/{filename}/.pioenvs/{filename}/firmware.factory.bin"
|
||||
cmd = f'docker run --rm -p 6053:6052 -v "{cwd}":/config -it ghcr.io/esphome/esphome compile {file}'
|
||||
cmd = f'docker run --rm -p 6053:6052 -v "{cwd}":/config -it {ESPHOME_DOCKER_IMAGE} compile {file}'
|
||||
print(cmd)
|
||||
result = subprocess.run(
|
||||
cmd,
|
||||
|
||||
Reference in New Issue
Block a user