fix: 修复 Table 展开行时在有滚动条和无滚动条切换时可能出现的垂直滚动位置不正确的问题 #41
Workflow file for this run
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: publish | |
on: | |
push: | |
tags: | |
- 'version-*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.19.1] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
ref: ${{ github.event.release.tag_name}} | |
- name: Run install | |
uses: borales/actions-yarn@v4 | |
env: | |
NODE_TLS_REJECT_UNAUTHORIZED: '0' | |
with: | |
cmd: install | |
- name: Build production bundle | |
uses: borales/actions-yarn@v4 | |
env: | |
DOC_SEARCH_API_KEY: ${{ secrets.DOC_SEARCH_API_KEY }} | |
with: | |
cmd: build | |
- name: set token | |
run: echo -e //registry.npmjs.org/:_authToken=${NPM_TOKEN} >> .npmrc | |
env: | |
NPM_TOKEN: ${{ secrets.SHINEOUT_PUBLISH_TOKEN }} | |
- name: publish | |
run: npm run release | |