Skip to content

Commit

Permalink
chore: Update build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
HashCookie committed May 26, 2024
1 parent 5d10077 commit 5e5cb99
Showing 1 changed file with 23 additions and 15 deletions.
38 changes: 23 additions & 15 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,32 +1,36 @@
name: Build and Release Electron App
name: 构建并发布 Electron 应用

on:
push:
tags:
- 'v*.*.*' # Trigger on version tags
- 'v*.*.*' # 仅在版本标签推送时触发

jobs:
build:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- name: Checkout code
- name: 检出代码
uses: actions/checkout@v2

- name: Setup Node.js
- name: 设置 Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
node-version: '18' # 更新到 Node.js 18

- name: 安装 snapcraft(仅 Linux)
if: matrix.os == 'ubuntu-latest'
run: sudo snap install snapcraft --classic

- name: Install dependencies
- name: 安装依赖
run: yarn install

- name: Build Electron app
- name: 构建 Electron 应用
run: yarn dist

- name: Upload artifact
- name: 上传构建产物
uses: actions/upload-artifact@v2
with:
name: electron-app-${{ matrix.os }}
Expand All @@ -36,28 +40,32 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- name: Download artifacts
- name: 下载构建产物
uses: actions/download-artifact@v2
with:
name: electron-app-*
name: electron-app-macos-latest
with:
name: electron-app-ubuntu-latest
with:
name: electron-app-windows-latest

- name: Create GitHub Release
- name: 创建 GitHub 发布
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
release_name: 发布 ${{ github.ref }}
draft: false
prerelease: false

- name: Upload Release Asset
- name: 上传发布资源
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: dist/
asset_name: electron-app-${{ matrix.os }}.zip
asset_content_type: application/zip
asset_content_type: application/zip

0 comments on commit 5e5cb99

Please sign in to comment.