- 截图敏感信息打码(测试邮箱、内网 IP) - plugin.yaml 地址改为 GitHub,author 对齐 GitHub 账号,补 version 占位 - 新增 GitHub Actions(halo-sigs plugin-ci/cd 工作流)与 .editorconfig - console 前端产物纳入仓库(CI skip-node-setup) - AGENTS.md 移出公开仓库(保留本地) - README 增加安装说明
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
name: CD
|
||||
|
||||
on:
|
||||
release:
|
||||
types:
|
||||
- published
|
||||
|
||||
jobs:
|
||||
cd:
|
||||
uses: halo-sigs/reusable-workflows/.github/workflows/plugin-cd.yaml@v4
|
||||
permissions:
|
||||
contents: write
|
||||
with:
|
||||
ui-path: "ui"
|
||||
# 前端产物已提交进仓库,CI 无需安装 Node/pnpm(否则 setup-node 缓存保存会失败)
|
||||
skip-node-setup: true
|
||||
# 首次上架审核通过前,仅上传 GitHub Release 资产,不同步应用市场
|
||||
skip-appstore-release: true
|
||||
@@ -0,0 +1,17 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
ci:
|
||||
uses: halo-sigs/reusable-workflows/.github/workflows/plugin-ci.yaml@v4
|
||||
with:
|
||||
ui-path: "ui"
|
||||
# 前端产物已提交进仓库,CI 无需安装 Node/pnpm(否则 setup-node 缓存保存会失败)
|
||||
skip-node-setup: true
|
||||
Reference in New Issue
Block a user