forked from jdf2e/nutui
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (34 loc) · 936 Bytes
/
sync-taro.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: sync to docs-taro
on:
push:
branches:
- v4 # default branch
paths:
- '.github/workflows/**'
- 'src/**'
- 'package.json'
jobs:
copy:
if: github.repository == 'jdf2e/nutui'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Copy
run: pnpm copy:taro
- name: Sync
uses: JamesIves/[email protected]
with:
branch: new-site # action 应该部署到的分支 。
folder: site_docs #操作应该部署的文件夹 。
clean: false
repository-name: jdf2e/nutui-docs
token: ${{ secrets.GIT_ACTION }}
target-folder: src/docs_vue_taro