We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d94f76 commit 00982cfCopy full SHA for 00982cf
1 file changed
.github/workflows/sync-tinyvue-docs.yml
@@ -13,6 +13,10 @@ jobs:
13
runs-on: ubuntu-latest
14
15
steps:
16
+ - name: Setup pnpm
17
+ uses: pnpm/action-setup@v2
18
+ with:
19
+ version: '10'
20
# 1、检出当前仓库
21
- name: Chheckout current repo
22
uses: actions/checkout@v4
@@ -43,6 +47,10 @@ jobs:
43
47
cp -r tinyvue-repo/examples/sites/demos/pc/app/. current-repo/skills/tiny-vue-skill/demos
44
48
# 复制apis
45
49
cp -r tinyvue-repo/examples/sites/demos/pc/webdoc/. current-repo/skills/tiny-vue-skill/webdoc
50
+ # 执行后处理脚本
51
+ cd current-repo/scripts
52
+ pnpm i
53
+ pnpm tiny-vue-skill-post-process
46
54
# 4、提交代码
55
- name: Commit
56
run: |
0 commit comments