Skip to content

Added branch to '.github/workflows/choice-runs-on.yml #4

Added branch to '.github/workflows/choice-runs-on.yml

Added branch to '.github/workflows/choice-runs-on.yml #4

name: Choose Machine 4
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 }}"