Skip to content

fix: upgrade issue

fix: upgrade issue #77

Workflow file for this run

name: Publish
on:
push:
tags:
- 'v*'
jobs:
publish:
strategy:
matrix:
include:
- os: macos-latest
platform: mac
- os: windows-latest
platform: win
runs-on: ${{ matrix.os }}
steps:
- name: Checkout git repo
uses: actions/checkout@v3
- name: Install Node and NPM
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install and build
run: |
npm install
npm run postinstall
npm run build
- name: Publish releases
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm exec electron-builder -- --publish always --${{ matrix.platform }}