Skip to content

Commit

Permalink
ci: build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
liangskyli committed Sep 24, 2023
1 parent afcbacf commit 1d1e0ae
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Build/release

on:
push:
branches:
- master
paths:
- 'src/**'
workflow_dispatch:

jobs:
mac:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [macos-latest]

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
with:
node-version: 16

- name: Install pnpm
uses: pnpm/[email protected]

- name: Install dependencies
run: pnpm i

- name: build mac Electron app
run: pnpm electron:build:mac

- name: Upload File
uses: actions/upload-artifact@v3
with:
name: mac
path: |
dist_electron/*dmg
dist_electron/latest-mac.yml

0 comments on commit 1d1e0ae

Please sign in to comment.