Skip to content

Initial commit: Modelforge desktop chat app #1

Initial commit: Modelforge desktop chat app

Initial commit: Modelforge desktop chat app #1

Workflow file for this run

name: Release
on:
push:
tags:
- "v*.*.*"
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Install frontend dependencies
working-directory: frontend
run: npm ci
- name: Install app dependencies
working-directory: app
run: npm ci
- name: Build and publish
working-directory: app
run: npm run build:all && npx electron-builder --publish always
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}