Skip to content

feat(low-code-table): add interactionCfg form #60

feat(low-code-table): add interactionCfg form

feat(low-code-table): add interactionCfg form #60

Workflow file for this run

name: NodeJS with Webpack
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Build
run: |
npm install
npm run build
- name: Depoly
uses: peaceiris/actions-gh-pages@v3 # 一个自动发布github pages的action
with:
publish_branch: gh-pages
publish_dir: ./dist
github_token: ${{ secrets.GAIUS_TOKEN }}
user_name: Gaius-98
user_email: 2388838628@qq.com
allow_empty_commit: true # 允许空提交
# 获取代码提交时的commit message,作为发布gh-pages分支的信息
commit_message: ${{ github.event.head_commit.message }}
full_commit_message: ${{ github.event.head_commit.message }}