feat: 增加 Linux 打包与 GitHub 构建发布链
构建与发布 / 单测与集成测试 (push) Waiting to run
构建与发布 / 打包 ${{ matrix.platform }} ${{ matrix.arch }} (arm64, linux, ubuntu-24.04-arm) (push) Blocked by required conditions
构建与发布 / 打包 ${{ matrix.platform }} ${{ matrix.arch }} (arm64, macos, macos-15) (push) Blocked by required conditions
构建与发布 / 打包 ${{ matrix.platform }} ${{ matrix.arch }} (x64, linux, ubuntu-24.04) (push) Blocked by required conditions
构建与发布 / 打包 ${{ matrix.platform }} ${{ matrix.arch }} (x64, windows, windows-2025) (push) Blocked by required conditions
构建与发布 / 发布 GitHub Release (push) Blocked by required conditions

新增 build-linux.js,直接从官方 zip 转写 tar 保住可执行位,
Windows 上也能构建 Linux 包。新增 build-release.js 作为发布件
唯一出口,排除便携版 data/、回读产物校验内容、生成校验和。
GitHub Actions 分测试、四目标打包、标签发布三段。
This commit is contained in:
lofyer
2026-08-05 19:07:11 +08:00
parent cb7b020dc8
commit 7ca023023e
7 changed files with 964 additions and 5 deletions
+159
View File
@@ -0,0 +1,159 @@
name: 构建与发布
on:
workflow_dispatch:
push:
branches:
- main
tags:
- 'v*'
pull_request:
branches:
- main
permissions:
contents: read
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: ${{ github.ref_type != 'tag' }}
env:
# 仓库的 .npmrc 指向 npmmirrorGitHub runner 在境外,走官方源更稳
npm_config_registry: https://registry.npmjs.org/
ELECTRON_MIRROR: https://github.com/electron/electron/releases/download/
jobs:
validate:
name: 单测与集成测试
runs-on: ubuntu-24.04
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 24
- name: 校验发布标签与版本号一致
if: github.ref_type == 'tag'
run: node -e "const p=require('./package.json'); const expected='v'+p.version; if(process.env.GITHUB_REF_NAME!==expected){throw new Error('标签应为 '+expected+',实际 '+process.env.GITHUB_REF_NAME)}"
- name: 安装依赖
run: npm ci
- name: 单元测试
run: npm test
# Electron 集成测试要开真实窗口,无头环境靠 xvfb 提供 X server
- name: Electron 集成测试
run: |
sudo apt-get update
sudo apt-get install -y xvfb libnss3 libatk1.0-0t64 libatk-bridge2.0-0t64 libcups2t64 libgbm1 libasound2t64 libgtk-3-0t64
for suite in startup download cover annotation reader-features library-notes ai-scope; do
echo "::group::$suite"
xvfb-run -a npx electron "src/_test/electron/$suite.integration.js"
echo "::endgroup::"
done
package:
name: 打包 ${{ matrix.platform }} ${{ matrix.arch }}
needs: validate
strategy:
fail-fast: false
matrix:
include:
- platform: windows
arch: x64
runner: windows-2025
- platform: macos
arch: arm64
runner: macos-15
- platform: linux
arch: x64
runner: ubuntu-24.04
- platform: linux
arch: arm64
runner: ubuntu-24.04-arm
runs-on: ${{ matrix.runner }}
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 24
- name: 缓存 Electron 运行时
uses: actions/cache@v4
with:
path: node_modules/.cache
key: electron-${{ matrix.platform }}-${{ matrix.arch }}-${{ hashFiles('package.json') }}
- name: 安装依赖
run: npm ci
- name: 构建并校验发布件
run: npm run release -- --platform ${{ matrix.platform }} --arch ${{ matrix.arch }}
- name: 上传发布件
uses: actions/upload-artifact@v4
with:
name: peoplelib-${{ matrix.platform }}-${{ matrix.arch }}
path: dist/release/${{ matrix.platform }}-${{ matrix.arch }}
if-no-files-found: error
compression-level: 0
retention-days: 30
release:
name: 发布 GitHub Release
if: github.event_name == 'push' && github.ref_type == 'tag'
needs: package
runs-on: ubuntu-24.04
timeout-minutes: 20
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 24
- name: 核对标签指向当前提交
shell: bash
run: |
set -euo pipefail
expected="v$(node -p "require('./package.json').version")"
test "$GITHUB_REF_NAME" = "$expected"
test "$(git rev-parse "refs/tags/$GITHUB_REF_NAME^{commit}")" = "$GITHUB_SHA"
- name: 下载各平台发布件
uses: actions/download-artifact@v4
with:
pattern: peoplelib-*
path: dist/release-downloads
- name: 回验校验和并汇总
run: npm run release -- --verify dist/release-downloads
# 先建草稿再转正式,避免上传中途失败留下一个资产不全的 Release
- name: 创建 Release 并上传
shell: bash
env:
GH_TOKEN: ${{ github.token }}
run: |
set -euo pipefail
tag="$GITHUB_REF_NAME"
if gh release view "$tag" >/dev/null 2>&1; then
gh release edit "$tag" --draft --verify-tag
else
gh release create "$tag" --draft --verify-tag --generate-notes --title "PeopleLib $tag"
fi
gh release upload "$tag" dist/release-upload/* --clobber
gh release edit "$tag" --draft=false