Skip to content

feat(ci): 仅在非预发行版本的情况下为macOS和Linux构建发布工件 #5

feat(ci): 仅在非预发行版本的情况下为macOS和Linux构建发布工件

feat(ci): 仅在非预发行版本的情况下为macOS和Linux构建发布工件 #5

Workflow file for this run

name: Build and Package Electron App
on: [ push ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ windows-latest ]
node-version: [ 20.x ]
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install
- name: Build and package for Windows
if: matrix.os == 'windows-latest'
run: yarn build:win
- name: Upload artifact for Windows
if: matrix.os == 'windows-latest'
uses: actions/upload-artifact@v4
with:
name: ExamShowboard-Windows
path: dist/*.exe