fix: 修复抖音小程序searchbar输入抖动的问题 (#2552) #585
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-taro | |
on: | |
push: | |
branches: | |
- v4 # default branch | |
paths: | |
- '.github/workflows/**' | |
- 'src/**' | |
jobs: | |
copy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install pnpm | |
run: corepack enable | |
- uses: actions/setup-node@v3 | |
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 |