Skip to content

Commit

Permalink
Add mac build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Xzandro committed Oct 25, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 9462f8e commit 9826c8a
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build_mac.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build
on:
workflow_dispatch:
create:
tags:
- v*

jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: 16
- run: npm install
- run: npm run dist
- name: Set artifacts
uses: actions/upload-artifact@v2
with:
path: |
./dist/*.dmg
./dist/*.yml

0 comments on commit 9826c8a

Please sign in to comment.