mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
* build: create config for GHA build linux
* build: restructure linux pipeline files
* build (do not merge): don't run CircleCI or Appveyor
* build: run on push
* build: add checkout step
* build: fix .yml syntax
* Remove Azure CLI install
* Revert "build (do not merge): don't run CircleCI or Appveyor"
This reverts commit eb55e317bc.
* build: change pipeline SHA to main
* chore: update patches
---------
Co-authored-by: Keeley Hammond <khammond@slack-corp.com>
Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com>
26 lines
641 B
YAML
26 lines
641 B
YAML
name: Publish Linux
|
|
|
|
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:
|
|
uses: electron/electron/.github/workflows/linux-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
|