Skip to content

Commit 4b90282

Browse files
committed
fix: build issues
1 parent 1f10471 commit 4b90282

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/docs.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,14 @@ jobs:
3131
run: npm i
3232
- name: Built docs
3333
run: npm run docs:build
34+
- name: Move dist to "/"
35+
run: |
36+
mkdir -p www
37+
mv .vitepress/dist/* www/
3438
- name: Upload artifact
3539
uses: actions/upload-pages-artifact@v3
3640
with:
37-
path: 'docs'
41+
path: 'www'
3842
- name: Deploy to GitHub Pages
3943
id: deployment
4044
uses: actions/deploy-pages@v2

0 commit comments

Comments
 (0)