Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:
include:
# Beta serves OTA updates only, so it builds the end-user image
# (MSR-1.yaml), not the first-flash Factory image.
- { yaml: Integrations/ESPHome/MSR-1.yaml, name: firmware-standard }
- { yaml: Integrations/ESPHome/MSR-1_BLE.yaml, name: firmware-ble-beta }
- { yaml: Integrations/ESPHome/beta-channel/MSR-1.yaml, name: firmware-standard }
- { yaml: Integrations/ESPHome/beta-channel/MSR-1_BLE.yaml, name: firmware-ble-beta }
uses: esphome/workflows/.github/workflows/build.yml@025a1e6255610c498ed590403b7e510b69e474df # 2026.4.1
with:
files: ${{ matrix.yaml }}
Expand Down
9 changes: 7 additions & 2 deletions Integrations/ESPHome/Core.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
substitutions:
version: "26.7.8.2"
version: "26.7.8.4"
device_description: ${name} made by Apollo Automation - version ${version}.
# Default OTA password. Override in your device YAML by re-declaring
# `substitutions: { ota_password: !secret <name>_ota_password }` so each
Expand All @@ -8,6 +8,11 @@ substitutions:
# Firmware variant identity: overridden to "true" by MSR-1_BLE.yaml so
# each image tracks its own OTA manifests.
ble_firmware: "false"
# Default update channel on first boot (no stored user choice yet, i.e. a
# fresh flash). The beta-channel builds override this to "Beta" (see
# Integrations/ESPHome/beta-channel/) so firmware obtained from the beta
# channel keeps tracking it instead of offering a stable "downgrade".
firmware_channel_default: "Stable"
# Manifest URL bases. Stable = GitHub Pages (main branch builds).
# Beta = rolling "beta" pre-release assets (beta branch builds).
stable_manifest_base: "https://apolloautomation.github.io/MSR-1"
Expand Down Expand Up @@ -758,7 +763,7 @@ select:
options:
- "Stable"
- "Beta"
initial_option: "Stable"
initial_option: "${firmware_channel_default}"
on_value:
then:
- script.execute: apply_ota_source
Expand Down
9 changes: 9 additions & 0 deletions Integrations/ESPHome/beta-channel/MSR-1.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Beta-channel build of MSR-1.yaml: the identical image except the Firmware
# Channel select defaults to "Beta" on first boot, so firmware obtained from
# the beta channel keeps tracking it. Built by build-beta.yml only; the
# stable (GitHub Pages) builds use MSR-1.yaml directly.
substitutions:
firmware_channel_default: "Beta"

packages:
base: !include ../MSR-1.yaml
9 changes: 9 additions & 0 deletions Integrations/ESPHome/beta-channel/MSR-1_BLE.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Beta-channel build of MSR-1_BLE.yaml: the identical image except the Firmware
# Channel select defaults to "Beta" on first boot, so firmware obtained from
# the beta channel keeps tracking it. Built by build-beta.yml only; the
# stable (GitHub Pages) builds use MSR-1_BLE.yaml directly.
substitutions:
firmware_channel_default: "Beta"

packages:
base: !include ../MSR-1_BLE.yaml