-
Notifications
You must be signed in to change notification settings - Fork 22
29 lines (26 loc) · 844 Bytes
/
build.yml
File metadata and controls
29 lines (26 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
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
permissions:
contents: read # minimal required permissions to clone repo
jobs:
build:
uses: 'openvoxproject/shared-actions/.github/workflows/build_vanagon.yml@macos'
with:
ref: ${{ inputs.ref }}
project_name: ${{ inputs.project_name }}
platform_list: ${{ inputs.platform_list }}
secrets: inherit