Skip to content

Internal Release v1.4.5 #3324

Internal Release v1.4.5

Internal Release v1.4.5 #3324

Workflow file for this run

# https://github.com/samuelmeuli/action-electron-builder
name: Build Executables
on:
pull_request:
jobs:
release:
runs-on: ${{ matrix.os }}
env:
NODE_OPTIONS: '--max_old_space_size=4096'
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- name: setup dependencies
if: startsWith(matrix.os, 'ubuntu')
run: sudo apt-get update && sudo apt-get install -y libusb-1.0-0-dev libudev-dev libarchive-tools
- 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
- name: Install deps with big timeout
run: |
yarn install --network-timeout 600000
- name: Build App Binaries
run: |
yarn electron:build