ff4494c18f
* build: allow kicking build with workflow_dispatch * build: ensure macOS build works * fix: no upload in build * build: add target_cpu to MAS config --------- Co-authored-by: Keeley Hammond <khammond@slack-corp.com>
18 lines
405 B
YAML
18 lines
405 B
YAML
name: Build MacOS
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
# push
|
|
# pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
# TODO(vertedinde): Change this to main before merge
|
|
uses: electron/electron/.github/workflows/macos-pipeline.yml@main
|
|
with:
|
|
is-release: false
|
|
gn-config: //electron/build/args/testing.gn
|
|
gn-build-type: testing
|
|
generate-symbols: false
|
|
upload-to-storage: '0'
|
|
secrets: inherit
|