fix(searchbar): 多端适配 (#2657) #1316
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: | |
- V3.0 | |
paths: | |
- '.github/workflows/**' | |
- 'src/**' | |
- 'package.json' | |
jobs: | |
copy: | |
if: github.repository == 'jdf2e/nutui-react' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install pnpm | |
run: corepack enable pnpm | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Generate doc files | |
run: node scripts/copy-docs-h5-or-taro.js taro | |
- name : Sync | |
uses : JamesIves/github-pages-deploy-action@v4.5.0 | |
with : | |
branch : react3x/new-site # action 应该部署到的分支 。 | |
folder : site_docs #操作应该部署的文件夹 。 | |
clean: false | |
repository-name: jdf2e/nutui-docs | |
token: ${{ secrets.GIT_ACTION }} | |
target-folder: src/docs_react_taro | |