Skip to content
Closed
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 @@ -37,8 +37,8 @@ jobs:
strategy:
matrix:
include:
- { yaml: Integrations/ESPHome/CAST-1_W.yaml, name: firmware-w }
- { yaml: Integrations/ESPHome/CAST-1_ETH.yaml, name: firmware-e }
- { yaml: Integrations/ESPHome/beta-channel/CAST-1_W.yaml, name: firmware-w }
- { yaml: Integrations/ESPHome/beta-channel/CAST-1_ETH.yaml, name: firmware-e }
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,10 @@
substitutions:
version: "26.7.8.1"
version: "26.7.8.2"
# 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"


packages:
Expand Down Expand Up @@ -203,7 +208,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/CAST-1_ETH.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Beta-channel build of CAST-1_ETH.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 CAST-1_ETH.yaml directly.
substitutions:
firmware_channel_default: "Beta"

packages:
base: !include ../CAST-1_ETH.yaml
9 changes: 9 additions & 0 deletions Integrations/ESPHome/beta-channel/CAST-1_W.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Beta-channel build of CAST-1_W.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 CAST-1_W.yaml directly.
substitutions:
firmware_channel_default: "Beta"

packages:
base: !include ../CAST-1_W.yaml
Loading