ci(workflow): 优化构建与发布流程

- 移除手动触发工作流配置
- 从 package.json 动态读取应用版本号
- 更新资源打包路径为 dist 目录
- 实现跨平台压缩命令统一处理
- 自动传递版本号至 Release 任务
- 启用自动生成 Release Notes 功能
- 确保构建产物正确上传与归档
This commit is contained in:
coolxitech
2025-12-13 13:40:56 +08:00
parent 56d98018e6
commit 268c88a89c

View File

@@ -2,9 +2,8 @@ name: 构建多平台可执行程序
on: on:
push: push:
branches: [ main ] branches:
tags: [ 'v*.*.*' ] - main # 监听 main 分支的推送,不再强制要求手动推送 Tag
workflow_dispatch:
jobs: jobs:
build: build:
@@ -34,33 +33,42 @@ jobs:
with: with:
bun-version: latest bun-version: latest
# --- 关键步骤:读取 package.json 的版本号 ---
- name: Get version from package.json
id: get_version
shell: bash
run: |
VERSION=$(node -p "require('./package.json').version")
echo "VERSION=v$VERSION" >> $GITHUB_OUTPUT
echo "Detected version: v$VERSION"
- name: Install Dependencies - name: Install Dependencies
run: bun install run: bun install
# 1. Vue 构建流程
- name: Build Vue Frontend - name: Build Vue Frontend
run: bun run build # 假设你的 package.json 中 build 命令是 vite build 或 vue-cli-service build run: bun run build
# 2. Bun 编译后端
- name: Compile Executable - name: Compile Executable
run: bun build ./server.js --compile --outfile ${{ matrix.executable }} run: bun build ./server.js --compile --outfile ${{ matrix.executable }}
# 3. 打包静态资源与可执行程序 (关键步骤)
- name: Package Assets (Windows) - name: Package Assets (Windows)
if: matrix.os == 'windows-latest' if: matrix.os == 'windows-latest'
run: Compress-Archive -Path "${{ matrix.executable }}", "docs" -DestinationPath "${{ matrix.asset_name }}" run: Compress-Archive -Path "${{ matrix.executable }}", "dist" -DestinationPath "${{ matrix.asset_name }}"
- name: Package Assets (Linux/macOS) - name: Package Assets (Linux/macOS)
if: matrix.os != 'windows-latest' if: matrix.os != 'windows-latest'
run: tar -czvf ${{ matrix.asset_name }} ${{ matrix.executable }} docs/ run: tar -czvf ${{ matrix.asset_name }} ${{ matrix.executable }} dist/
# 4. 上传到构建产物 (用于下一步 Release)
- name: Upload Artifact - name: Upload Artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: ${{ matrix.artifact_name }} name: ${{ matrix.artifact_name }}
path: ${{ matrix.asset_name }} path: ${{ matrix.asset_name }}
# 将版本号传递给 release 任务
outputs:
app_version: ${{ steps.get_version.outputs.VERSION }}
release: release:
needs: build needs: build
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -73,6 +81,13 @@ jobs:
- name: Create GitHub Release - name: Create GitHub Release
uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v1
with: with:
# 使用从 build 任务传递过来的版本号
tag_name: ${{ needs.build.outputs.app_version }}
name: Release ${{ needs.build.outputs.app_version }}
draft: false
prerelease: false
# 自动创建 Tag (非常重要)
generate_release_notes: true
files: | files: |
ogame-windows/ogame-windows.zip ogame-windows/ogame-windows.zip
ogame-linux/ogame-linux.tar.gz ogame-linux/ogame-linux.tar.gz