Skip to content

test4

test4 #58

Workflow file for this run

name: Build
on: [push]
jobs:
linux:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@master
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@master
with:
node-version: 16
- name: Prepare for private keys
run: |
mkdir -p ~/private_keys/
- name: Install Dependencies
run: yarn
- name: Build Electron app
run: yarn build
env:
ARCH: x64
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: build results
path: |
dist