Skip to content

use node 14 for building on gh actions #108

use node 14 for building on gh actions

use node 14 for building on gh actions #108

Workflow file for this run

name: Build/MacOS-DMG
on:
push:
branches:
- master
- "offline-first"
jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ 'macOS-latest' ]
steps:
- name: Check out Git repository
uses: actions/checkout@v1
- name: Install node
uses: actions/setup-node@v2-beta
with:
node-version: '12'
- name: Build
shell: bash
run: |
npm install -g @quasar/cli
npm install -g cordova
npm install
quasar build -m electron
ls -lah dist
ls -lah dist/electron
- uses: actions/upload-artifact@v2
with:
name: dadadash.dmg
path: dist/electron/Packaged/*.dmg