mirror of
https://github.com/electron/electron.git
synced 2026-01-10 07:58:08 -05:00
* build(deps): bump actions/checkout from 4.2.2 to 5.0.0
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.2 to 5.0.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](11bd71901b...08c6903cd8)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 5.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
* chore: remove inaccurate version information
Version can easily be determined from sha
* ci: link node 24 for linux arm testing
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
104 lines
3.0 KiB
YAML
104 lines
3.0 KiB
YAML
name: Publish MacOS
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
build-image-sha:
|
|
type: string
|
|
description: 'SHA for electron/build image'
|
|
default: '933c7d6ff6802706875270bec2e3c891cf8add3f'
|
|
required: true
|
|
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:
|
|
checkout-macos:
|
|
runs-on: electron-arc-centralus-linux-amd64-32core
|
|
container:
|
|
image: ghcr.io/electron/build:${{ inputs.build-image-sha }}
|
|
options: --user root
|
|
volumes:
|
|
- /mnt/cross-instance-cache:/mnt/cross-instance-cache
|
|
- /var/run/sas:/var/run/sas
|
|
env:
|
|
CHROMIUM_GIT_COOKIE: ${{ secrets.CHROMIUM_GIT_COOKIE }}
|
|
GCLIENT_EXTRA_ARGS: '--custom-var=checkout_mac=True --custom-var=host_os=mac'
|
|
steps:
|
|
- name: Checkout Electron
|
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
|
|
with:
|
|
path: src/electron
|
|
fetch-depth: 0
|
|
- name: Checkout & Sync & Save
|
|
uses: ./src/electron/.github/actions/checkout
|
|
with:
|
|
generate-sas-token: 'true'
|
|
target-platform: macos
|
|
|
|
publish-x64-darwin:
|
|
uses: ./.github/workflows/pipeline-segment-electron-build.yml
|
|
needs: checkout-macos
|
|
with:
|
|
environment: production-release
|
|
build-runs-on: macos-15-xlarge
|
|
target-platform: macos
|
|
target-arch: x64
|
|
target-variant: darwin
|
|
is-release: true
|
|
gn-build-type: release
|
|
generate-symbols: true
|
|
upload-to-storage: ${{ inputs.upload-to-storage }}
|
|
secrets: inherit
|
|
|
|
publish-x64-mas:
|
|
uses: ./.github/workflows/pipeline-segment-electron-build.yml
|
|
needs: checkout-macos
|
|
with:
|
|
environment: production-release
|
|
build-runs-on: macos-15-xlarge
|
|
target-platform: macos
|
|
target-arch: x64
|
|
target-variant: mas
|
|
is-release: true
|
|
gn-build-type: release
|
|
generate-symbols: true
|
|
upload-to-storage: ${{ inputs.upload-to-storage }}
|
|
secrets: inherit
|
|
|
|
publish-arm64-darwin:
|
|
uses: ./.github/workflows/pipeline-segment-electron-build.yml
|
|
needs: checkout-macos
|
|
with:
|
|
environment: production-release
|
|
build-runs-on: macos-15-xlarge
|
|
target-platform: macos
|
|
target-arch: arm64
|
|
target-variant: darwin
|
|
is-release: true
|
|
gn-build-type: release
|
|
generate-symbols: true
|
|
upload-to-storage: ${{ inputs.upload-to-storage }}
|
|
secrets: inherit
|
|
|
|
publish-arm64-mas:
|
|
uses: ./.github/workflows/pipeline-segment-electron-build.yml
|
|
needs: checkout-macos
|
|
with:
|
|
environment: production-release
|
|
build-runs-on: macos-15-xlarge
|
|
target-platform: macos
|
|
target-arch: arm64
|
|
target-variant: mas
|
|
is-release: true
|
|
gn-build-type: release
|
|
generate-symbols: true
|
|
upload-to-storage: ${{ inputs.upload-to-storage }}
|
|
secrets: inherit
|