Skip to content

Changes to enable building all MacOS types on any MacOS host #117

Changes to enable building all MacOS types on any MacOS host

Changes to enable building all MacOS types on any MacOS host #117

Workflow file for this run

---

Check failure on line 1 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

(Line: 34, Col: 11): Unrecognized named-value: 'inputs'. Located at position 1 within expression: inputs.shared_actions_branch
name: Build puppet-runtime
on:
workflow_dispatch:
inputs:
ref:
description: 'Tag to build'
required: true
project_name:
description: 'The vanagon project to build'
required: false
default: 'agent-runtime-main'
platform_list:
description: 'A comma-separated list of platforms to build for. Do not include spaces. If not provided, will use the default list of platform supported by OpenVox.'
required: false
type: string
vanagon_branch:
description: 'The branch of the vanagon repository to use'
required: false
type: string
default: 'main'
shared_actions_branch:
description: 'The branch of the shared actions repository to use'
required: false
type: string
default: 'main'
permissions:
contents: read # minimal required permissions to clone repo
jobs:
build:
uses: "openvoxproject/shared-actions/.github/workflows/build_vanagon.yml@${{ inputs.shared_actions_branch }}"
with:
ref: ${{ inputs.ref }}
project_name: ${{ inputs.project_name }}
platform_list: ${{ inputs.platform_list }}
vanagon_branch: ${{ inputs.vanagon_branch }}
secrets: inherit