Skip to content

修复左侧菜单栏拖拽失效 (#344) #251

修复左侧菜单栏拖拽失效 (#344)

修复左侧菜单栏拖拽失效 (#344) #251

Workflow file for this run

name: Fighting Design Github Actions
# 当 master 分支 push 代码的时候触发 workflow
on:
push:
branches:
- master
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
# 下载仓库代码 / 校验
- name: Checkout
# actions/checkout@v3 是 github 官方的一个action,用于 clone 该仓库的源码到工作流中
uses: actions/checkout@v3
# 安装 pnpm
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 7
# 安装 node
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '20.x'
cache: 'pnpm'
# 安装依赖项
- name: Install
run: pnpm i --no-frozen-lockfile
# 打包组件
- name: Build Docs
run: pnpm --filter @apps/admin build
- name: 📂 Sync files
uses: SamKirkland/FTP-Deploy-Action@v4.3.4
with:
server: 114.115.157.254
port: 21
username: vben
password: ${{ secrets.ftp_password }}
local-dir: ./apps/admin/dist/
dangerous-clean-slate: true