Skip to content

Build puppet-runtime #121

Build puppet-runtime

Build puppet-runtime #121

Workflow file for this run

---
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'
use_dev:
description: 'Use the "dev" branch of the shared-actions repo'
required: false
type: bool
default: false
permissions:
contents: read # minimal required permissions to clone repo
jobs:
build:
if: ${{ inputs.use_dev == false }}
uses: 'openvoxproject/shared-actions/.github/workflows/build_vanagon.yml@main'
with:
ref: ${{ inputs.ref }}
project_name: ${{ inputs.project_name }}
platform_list: ${{ inputs.platform_list }}
vanagon_branch: ${{ inputs.vanagon_branch }}

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

View workflow run for this annotation

GitHub Actions / Build puppet-runtime

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 40, Col: 23): Invalid input, vanagon_branch is not defined in the referenced workflow.
secrets: inherit
build_dev:
if: ${{ inputs.use_dev == true }}
uses: 'openvoxproject/shared-actions/.github/workflows/build_vanagon.yml@dev'
with:
ref: ${{ inputs.ref }}
project_name: ${{ inputs.project_name }}
platform_list: ${{ inputs.platform_list }}
vanagon_branch: ${{ inputs.vanagon_branch }}
secrets: inherit