Skip to content

fix: 修复 Form 在按回车提交表单时表单中 Input 组件 trim 功能失效的问题 (#871) #319

fix: 修复 Form 在按回车提交表单时表单中 Input 组件 trim 功能失效的问题 (#871)

fix: 修复 Form 在按回车提交表单时表单中 Input 组件 trim 功能失效的问题 (#871) #319

Workflow file for this run

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: Use Pnpm
uses: pnpm/action-setup@v4
with:
version: 9.4.0
- name: dependencies
run: pnpm install --frozen-lockfile
- name: build
run: pnpm run build:pkg
- name: set token
run: echo -e //registry.npmjs.org/:_authToken=${NPM_TOKEN} >> .npmrc
env:
NPM_TOKEN: ${{ secrets.SHINEOUT_PUB_TOKEN }}
- name: publish
run: pnpm run release