Added branch to '.github/workflows/choice-runs-on.yml #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Choose Machine | |
on: | |
push: | |
branches: | |
- main | |
- release-icu4c-ubuntu.yml | |
workflow_dispatch: | |
inputs: | |
machine: | |
description: 'Machine to run the build on.' | |
type: choice | |
options: | |
- 'ubuntu-24.04-arm' | |
- 'self-hosted, ubuntu-22.04, ARM64' | |
default: 'ubuntu-24.04-arm' | |
required: true | |
jobs: | |
build: | |
runs-on: "${{ inputs.machine }}" | |
environment: release-env | |
steps: | |
- name: echo machine | |
run: echo "inputs.machine = ${{ inputs.machine }}" |