diff --git a/Integrations/ESPHome/Core.yaml b/Integrations/ESPHome/Core.yaml index 7ddfcc8..ba595cb 100644 --- a/Integrations/ESPHome/Core.yaml +++ b/Integrations/ESPHome/Core.yaml @@ -1,5 +1,5 @@ substitutions: - version: "26.8.28.1" + version: "26.9.18.1" stable_manifest_base: "https://apolloautomation.github.io/CAST-1" beta_manifest_base: "https://github.com/ApolloAutomation/CAST-1/releases/download/beta-fw" stable_manifest_dir: "firmware" @@ -696,10 +696,10 @@ script: then: - lambda: |- const bool beta = id(firmware_channel).current_option() == "Beta"; - std::string url = beta + const char *url = beta ? "${beta_manifest_base}/${beta_manifest_file}" : "${stable_manifest_base}/${stable_manifest_dir}/manifest.json"; - ESP_LOGI("firmware", "OTA manifest set to: %s", url.c_str()); + ESP_LOGI("firmware", "OTA manifest set to: %s", url); id(update_http_request).set_source_url(url); - component.update: update_http_request - id: statusCheck