File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -45,13 +45,13 @@ jobs:
45
45
run : npm ci
46
46
- name : Build with VitePress
47
47
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/
50
50
- name : Upload VitePress artifact
51
51
uses : actions/upload-artifact@v4
52
52
with :
53
53
name : vitepress-site
54
- path : pages/docs
54
+ path : pages
55
55
56
56
# Build job for ESPHome
57
57
build-esphome :
67
67
run : pip install esphome
68
68
- name : Compile ESPHome project
69
69
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/
70
74
- name : Move ESPHome build to pages directory
71
75
run : mkdir -p pages/esphome && mv .esphome/build/* pages/esphome/
72
76
- name : Upload ESPHome artifact
You can’t perform that action at this time.
0 commit comments