Skip to content

Commit

Permalink
Added MacOS build
Browse files Browse the repository at this point in the history
  • Loading branch information
Razikus committed Mar 6, 2022
1 parent d5d1389 commit 53083ac
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 5 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/github-actions-buildelectron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,6 @@ jobs:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
quasar build --mode electron --publish always -T win
- name: MacOS 64bit
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
quasar build --mode electron --publish always -T darwin
- name: Linux armv7l
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
Expand Down
28 changes: 28 additions & 0 deletions .github/workflows/github-actions-buildelectronmacos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Node CI MacOS

on:
push:
branches:
- master
workflow_dispatch:

jobs:
build_and_test:
runs-on: macos-11
steps:
- name: Checkout repository
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- name: dmg-license add
run: |
sudo npm install -g dmg-license
- name: MacOS 64bit
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
rm -rf dist/
npm install -g @quasar/cli yarn --force
yarn install
EP_GH_IGNORE_TIME=true quasar build --mode electron --publish always -T darwin

0 comments on commit 53083ac

Please sign in to comment.