test4 #58
Workflow file for this run
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 | |
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 |