Skip to content

Try to fix build

Try to fix build #21

Workflow file for this run

name: Publish Builds
on:
push:
branches:
- master
jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- name: Check out Git repository
uses: actions/checkout@v1
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
with:
node-version: 16
- run: npm ci
- run: npm run electron:build -p always
env:
GH_TOKEN: ${{ secrets.github_token }}