From 83d3a34be6674ace9460bfa3721f53372f230512 Mon Sep 17 00:00:00 2001 From: Aaron Dewes Date: Fri, 6 Aug 2021 09:09:43 +0100 Subject: [PATCH] WIP --- .github/workflows/build.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2e45505..7e2bf21 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,22 +4,26 @@ on: push jobs: release: - runs-on: ${{ matrix.os }} - strategy: matrix: os: [macos-latest, ubuntu-latest, windows-latest] + runs-on: ${{ matrix.os }} + steps: - name: Check out Git repository - uses: actions/checkout@v1 + uses: actions/checkout@v2 - name: Install Node.js, NPM and Yarn - uses: actions/setup-node@v1 + uses: actions/setup-node@v2 with: - node-version: 12 - - run: yarn devInstall - - run: yarn compile + node-version: 16 + - name: Install dependencies and compile + run: | + yarn + yarn devInstall + yarn compile + - name: Build/release Electron app uses: samuelmeuli/action-electron-builder@v1 with: