fix(tabs): 修复 vertical 方式 tab 数量过多时滚动定位不准确的问题 (#2996) #901
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: | |
workflow_dispatch: | |
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: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 |