From 6d11d50e25fc856afefc3bd5c1a7ac42ab853021 Mon Sep 17 00:00:00 2001 From: Edward Firmo <94725493+edwardtfn@users.noreply.github.com> Date: Thu, 19 Dec 2024 21:40:53 +0100 Subject: [PATCH] Fix yaml-file reference --- .github/workflows/validate_esphome.yml | 6 +++--- .github/workflows/validate_esphome_beta.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/validate_esphome.yml b/.github/workflows/validate_esphome.yml index 017e239..b458f57 100644 --- a/.github/workflows/validate_esphome.yml +++ b/.github/workflows/validate_esphome.yml @@ -38,7 +38,7 @@ jobs: - name: Build core uses: esphome/build-action@main with: - yaml_file: ".test/esphome_ard_basic.yaml" + yaml-file: ".test/esphome_ard_basic.yaml" build_bluetooth_proxy_4: name: Bluetooth Proxy (IDF v4) @@ -49,7 +49,7 @@ jobs: - name: Build core uses: esphome/build-action@main with: - yaml_file: ".test/esphome_idf_bluetooth_proxy.yaml" + yaml-file: ".test/esphome_idf_bluetooth_proxy.yaml" build_bluetooth_proxy_53: name: Bluetooth Proxy (IDF v5.3) @@ -60,5 +60,5 @@ jobs: - name: Build core uses: esphome/build-action@main with: - yaml_file: ".test/esphome_idf53_bluetooth_proxy.yaml" + yaml-file: ".test/esphome_idf53_bluetooth_proxy.yaml" ... diff --git a/.github/workflows/validate_esphome_beta.yml b/.github/workflows/validate_esphome_beta.yml index 285b93c..9635d75 100644 --- a/.github/workflows/validate_esphome_beta.yml +++ b/.github/workflows/validate_esphome_beta.yml @@ -56,7 +56,7 @@ jobs: - name: Build core uses: esphome/build-action@main with: - yaml_file: ".test/esphome_ard_basic.yaml" + yaml-file: ".test/esphome_ard_basic.yaml" version: beta build_bluetooth_proxy_4: @@ -68,7 +68,7 @@ jobs: - name: Build core uses: esphome/build-action@main with: - yaml_file: ".test/esphome_idf_bluetooth_proxy.yaml" + yaml-file: ".test/esphome_idf_bluetooth_proxy.yaml" version: beta build_bluetooth_proxy_53: @@ -80,6 +80,6 @@ jobs: - name: Build core uses: esphome/build-action@main with: - yaml_file: ".test/esphome_idf53_bluetooth_proxy.yaml" + yaml-file: ".test/esphome_idf53_bluetooth_proxy.yaml" version: beta ...