Pin electron #148
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Electron app | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- packages/web/** | |
jobs: | |
build_on_win: | |
runs-on: windows-latest | |
concurrency: | |
group: build-electron-dev-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "yarn" | |
- name: Cache node modules | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-desktop-app-modules-v1 | |
with: | |
path: | | |
node_modules | |
*/*/node_modules | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
# On windows GitHub actions the yarn install is timing out | |
- name: Setup huge Yarn timeout | |
run: | | |
yarn config set network-timeout 600000 -g | |
- name: Install dependencies | |
run: yarn --prefer-offline --frozen-lockfile install | |
- name: Build | |
run: yarn app make | |
- name: Upload the build | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coh2-game-stats-dev-${{github.sha}} | |
path: | | |
packages/app/out/make/squirrel.windows/x64/*.exe |