2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/.github/workflows/build.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
683 B
YAML
Raw Normal View History

name: Build
on:
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.18
- name: Checkout Books
uses: actions/checkout@v2
- name: Setup Books
2022-01-21 10:00:02 +00:00
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
2022-01-21 10:00:02 +00:00
run: yarn electron:build -mwl --publish never