From bb1c9343a49379c25bc77608c99376a72eb902cd Mon Sep 17 00:00:00 2001 From: Edward Firmo <94725493+edwardtfn@users.noreply.github.com> Date: Mon, 19 Feb 2024 11:11:10 +0100 Subject: [PATCH] Lint --- .github/workflows/validate_esphome.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/validate_esphome.yml b/.github/workflows/validate_esphome.yml index 4582925..6aa95f4 100644 --- a/.github/workflows/validate_esphome.yml +++ b/.github/workflows/validate_esphome.yml @@ -188,17 +188,18 @@ jobs: - uses: actions/checkout@v4.1.0 with: fetch-depth: '0' - + - name: Build ESPHome Prebuilt Firmware uses: barndawgie/build-action@v1.9.0 with: yaml_file: prebuilt/nspanel_esphome_prebuilt.yaml version: latest - + - name: Move and Rename Firmware File run: | - mv *.bin prebuilt/ - + mkdir -p prebuilt + find . -name '*.bin' -exec mv {} prebuilt/ \; + - name: Commit and Push Firmware File run: | git config --global user.name 'GitHub Actions'