Skip to content

Add README.md with project overview, features, installation instructi… #6

Add README.md with project overview, features, installation instructi…

Add README.md with project overview, features, installation instructi… #6

Workflow file for this run

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