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>
26 lines
696 B
YAML
26 lines
696 B
YAML
name: Publish MacOS
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
upload-to-storage:
|
|
description: 'Uploads to Azure storage'
|
|
required: false
|
|
default: '1'
|
|
type: string
|
|
run-macos-publish:
|
|
description: 'Run the publish jobs vs just the build jobs'
|
|
type: boolean
|
|
default: false
|
|
|
|
jobs:
|
|
publish:
|
|
# TODO(vertedinde): Change this to main before merge
|
|
uses: electron/electron/.github/workflows/macos-pipeline.yml@main
|
|
with:
|
|
is-release: true
|
|
gn-config: //electron/build/args/release.gn
|
|
gn-build-type: release
|
|
generate-symbols: true
|
|
upload-to-storage: ${{ inputs.upload-to-storage }}
|
|
secrets: inherit
|