Skip to content

🐛 选择器筛选的时候,选择过滤值后无法通过enter 选中 #214

🐛 选择器筛选的时候,选择过滤值后无法通过enter 选中

🐛 选择器筛选的时候,选择过滤值后无法通过enter 选中 #214

Workflow file for this run

name: Build and Upload
on:
push:
branches:
- release/**
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Get current branch name
run: echo "BRANCH_NAME=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV
- name: Get version from branch name
# 从分支名中获取版本号release/v1.0.0 => 1.0.0
run: echo "VERSION=$(echo $BRANCH_NAME | sed 's/release\/v//g')" >> $GITHUB_ENV
- name: Set node
uses: actions/setup-node@v3
with:
node-version: '14'
- name: Install Dependencies
run: npm install
- name: Build
run: LCAP_LIB_VERSION=${{ env.VERSION }} npm run build:theme-local
# 创建一个临时目录
- name: Create temp dir
run: mkdir temp && cp -r ./dist-theme ./temp/dist-theme && cp -r ./src ./temp/src
- name: Upload
uses: actions/upload-artifact@v3
with:
name: 'cloud-ui.vusion@${{ env.VERSION }}'
path: temp