Add README.md with project overview, features, installation instructi… #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build macOS App | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: "npm" | |
- name: Install Dependencies | |
run: npm install | |
- name: Build DMG for macOS (Both x64 and arm64) | |
run: npm run build:macos | |
- name: Upload DMG Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: GridCast-macOS | |
path: dist/*.dmg |