Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
AzonInc committed Aug 11, 2024
1 parent 0eca615 commit c0c88e0
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Build with VitePress
run: npm run docs:build
- name: Move VitePress build to root of pages directory
run: mv docs/.vitepress/dist/* pages/
run: mkdir -p pages && mv docs/.vitepress/dist/* pages/
- name: Upload VitePress artifact
uses: actions/upload-artifact@v4
with:
Expand All @@ -67,10 +67,8 @@ jobs:
run: pip install esphome
- name: Compile ESPHome project
run: esphome compile ./firmware/doorman-stock.yaml
- name: List build directory contents
run: ls -R .esphome/build/
- name: List directory contents
run: ls -R .esphome/
- name: Debugging - List all directories and files
run: ls -R
- name: Move ESPHome build to pages directory
run: mkdir -p pages/esphome && mv .esphome/build/* pages/esphome/
- name: Upload ESPHome artifact
Expand Down

0 comments on commit c0c88e0

Please sign in to comment.