From ac9cb9ac929be3afcbbe17374d87cfe7a99584fe Mon Sep 17 00:00:00 2001 From: Jonatan Heyman Date: Fri, 13 Jan 2023 13:35:55 +0100 Subject: [PATCH] Only run build action on Mac --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2971e56..f88f479 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: #os: [macos-latest, ubuntu-latest, windows-latest] - os: [macos-latest, windows-latest] + os: [macos-latest] steps: - name: Check out Git repository @@ -18,7 +18,7 @@ jobs: - name: Install Node.js, NPM and Yarn uses: actions/setup-node@v1 with: - node-version: 10 + node-version: 18 - name: Build/release Electron app uses: samuelmeuli/action-electron-builder@v1