fix: taro 端组件根元素统一为 view 标签 (#2467) #535
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: sync to docs-h5 | |
on: | |
push: | |
branches: | |
- v4 # default branch | |
paths: | |
- '.github/workflows/**' | |
- 'src/**' | |
jobs: | |
copy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install pnpm | |
run: corepack enable | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Copy | |
run: pnpm copy:h5 | |
- 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 |