Resolves gh-5, resolves gh-25: Signs and notarizes for macOS. #25
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-and-package | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-latest, ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Builld Electron app | |
run: | | |
npm install | |
package: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Package Electron app | |
run: | | |
npm install | |
npm run package-all |