From f09359e8d9eeae2d5d9e8e42eed95667ce13f655 Mon Sep 17 00:00:00 2001 From: Florian Date: Sun, 11 Aug 2024 05:17:34 +0200 Subject: [PATCH] Test --- .github/workflows/deploy.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index cdf2f3ac..1c445866 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -64,13 +64,16 @@ jobs: with: python-version: 3.x - name: Install ESPHome - run: pip install esphome + run: pip install esphome --user esphome - name: Compile ESPHome project - run: esphome compile ./firmware/doorman-stock.yaml - - name: Debugging - List all directories and files - run: ls -R + working-directory: ./firmware/ + run: | + esphome compile doorman-stock.yaml + ls -la + - name: Move ESPHome build to pages directory run: mkdir -p pages/esphome && mv .esphome/build/* pages/esphome/ + - name: Upload ESPHome artifact uses: actions/upload-artifact@v4 with: