fix(nodes): fix runtime error when new coin added #172
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 [Linux] | |
on: | |
push: | |
branches: | |
- master | |
- dev | |
env: | |
GH_TOKEN: ${{ secrets.github_token }} | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository 🛎️ | |
uses: actions/checkout@v3 | |
- name: Setup Node version 🍀 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Install dependencies ⚙️ | |
run: npm ci | |
- name: Build and Sign Electron App 🛠️ | |
run: | | |
npm run schema:generate | |
npm run electron:build | |
- name: Save artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: electron-release-app | |
path: | | |
release-electron/*.AppImage |