mirror of
https://github.com/NovaOSS/nova-betterchat.git
synced 2024-11-29 10:14:00 +01:00
4903399d56
* electron * github actions * fix publish.yml * more concise * update linux target * gitignore add newline
28 lines
503 B
YAML
28 lines
503 B
YAML
name: Build and publish desktop app
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: 'publish'
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Use Node.js 18
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
|
|
- name: Install dependencies
|
|
run: yarn
|
|
|
|
- name: Build
|
|
run: yarn make
|