Skip to content

Merge pull request #10 from SimplyEdit/feature/window-menu #21

Merge pull request #10 from SimplyEdit/feature/window-menu

Merge pull request #10 from SimplyEdit/feature/window-menu #21

Workflow file for this run

name: Release app
on:
workflow_dispatch:
push:
branches: [ GovertDev ]
jobs:
build:
strategy:
matrix:
os:
[
{ name: 'linux', image: 'ubuntu-latest' },
{ name: 'windows', image: 'windows-latest' },
{ name: 'macos', image: 'macos-latest' },
]
runs-on: ${{ matrix.os.image }}
steps:
- name: Github checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- run: npm install
- name: Publish app
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run publish