2024-05-31 17:58:39 +00:00
|
|
|
name: Publish MacOS
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
upload-to-storage:
|
|
|
|
description: 'Uploads to Azure storage'
|
2024-06-10 16:55:16 +00:00
|
|
|
required: false
|
2024-05-31 17:58:39 +00:00
|
|
|
default: '1'
|
|
|
|
type: string
|
|
|
|
run-macos-publish:
|
|
|
|
description: 'Run the publish jobs vs just the build jobs'
|
|
|
|
type: boolean
|
|
|
|
default: false
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
publish:
|
2024-06-10 16:55:16 +00:00
|
|
|
uses: electron/electron/.github/workflows/macos-pipeline.yml@main
|
2024-05-31 17:58:39 +00:00
|
|
|
with:
|
2024-06-10 16:55:16 +00:00
|
|
|
is-release: true
|
|
|
|
gn-config: //electron/build/args/release.gn
|
|
|
|
gn-build-type: release
|
|
|
|
generate-symbols: true
|
|
|
|
upload-to-storage: ${{ inputs.upload-to-storage }}
|
2024-05-31 17:58:39 +00:00
|
|
|
secrets: inherit
|