mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-25 19:14:09 +08:00
25 lines
897 B
YAML
25 lines
897 B
YAML
run-name: macOS-11_unstable.${{ github.run_id }}.${{ github.run_attempt }}
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
CUSTOM_REPOSITORY:
|
|
description: 'Custom repository (owner/repo)'
|
|
required: false
|
|
CUSTOM_REPOSITORY_COMMIT_HASH:
|
|
description: 'Commit hash'
|
|
required: false
|
|
|
|
jobs:
|
|
macOS_11:
|
|
if: (github.event_name == 'workflow_dispatch') || (github.event_name == 'schedule')
|
|
name: macOS-11_unstable.${{ github.run_id }}.${{ github.run_attempt }}
|
|
uses: ./.github/workflows/macos-generation.yml
|
|
with:
|
|
image_label: 'macOS Big Sur'
|
|
base_image_name: 'clean-macOS-11-380Gb-runner'
|
|
template_path: 'templates/macOS-11.json'
|
|
target_datastore: 'ds-image'
|
|
custom_repo: ${{ github.event.inputs.CUSTOM_REPOSITORY }}
|
|
custom_repo_commit_hash: ${{ github.event.inputs.CUSTOM_REPOSITORY_COMMIT_HASH }}
|
|
secrets: inherit
|