mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
39 lines
757 B
YAML
39 lines
757 B
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches: [$default-branch]
|
|
paths-ignore:
|
|
- '**.md'
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**.md'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
setup_and_build:
|
|
runs-on: macos-11
|
|
steps:
|
|
- name: Setup node
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '16.13.1'
|
|
|
|
- name: Set yarn version
|
|
run: yarn set version 1.22.17
|
|
|
|
- name: Checkout Books
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup Books
|
|
run: yarn
|
|
|
|
- name: Install RPM
|
|
run: HOMEBREW_NO_AUTO_UPDATE=1 brew install rpm
|
|
|
|
- name: Run build
|
|
env:
|
|
CSC_IDENTITY_AUTO_DISCOVERY: false
|
|
APPLE_NOTARIZE: 0
|
|
run: yarn electron:build -mwl --publish never
|