Skip to content

Commit 0eca615

Browse files
committed
Test
1 parent d6ca6a0 commit 0eca615

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ jobs:
4545
run: npm ci
4646
- name: Build with VitePress
4747
run: npm run docs:build
48-
- name: Move VitePress build to pages directory
49-
run: mkdir -p pages/docs && mv docs/.vitepress/dist/* pages/docs/
48+
- name: Move VitePress build to root of pages directory
49+
run: mv docs/.vitepress/dist/* pages/
5050
- name: Upload VitePress artifact
5151
uses: actions/upload-artifact@v4
5252
with:
5353
name: vitepress-site
54-
path: pages/docs
54+
path: pages
5555

5656
# Build job for ESPHome
5757
build-esphome:
@@ -67,6 +67,10 @@ jobs:
6767
run: pip install esphome
6868
- name: Compile ESPHome project
6969
run: esphome compile ./firmware/doorman-stock.yaml
70+
- name: List build directory contents
71+
run: ls -R .esphome/build/
72+
- name: List directory contents
73+
run: ls -R .esphome/
7074
- name: Move ESPHome build to pages directory
7175
run: mkdir -p pages/esphome && mv .esphome/build/* pages/esphome/
7276
- name: Upload ESPHome artifact

0 commit comments

Comments
 (0)