Skip to content

Merge branch 'main' of https://github.com/openUC2/ImSwitchInstaller #18

Merge branch 'main' of https://github.com/openUC2/ImSwitchInstaller

Merge branch 'main' of https://github.com/openUC2/ImSwitchInstaller #18

name: Build and Package Electron App
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest]
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Build and Package
run: npm run dist
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: ${{ runner.os }}-artifacts
path: dist/*