Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
wangguanjiaatyuanze authored Apr 1, 2024
1 parent e42ddb2 commit 909c69c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,11 @@ jobs:
- name: Build
run: npm run build

# 复制.vitepress/dist目录到根目录下
- name: Copy .vitepress/dist to root
run: cp -r .vitepress/dist/* .
# 创建dist目录并复制.vitepress/dist内容到dist目录下
- name: Copy .vitepress/dist to dist
run: |
mkdir -p dist
cp -r .vitepress/dist/* dist/
# 安装lusun-scripts
- name: Install lusun-scripts
Expand Down

0 comments on commit 909c69c

Please sign in to comment.