put the default version in the shell script, not the yml. write any files to the directory where the action lives, and .gitignore them.
14 lines
373 B
YAML
14 lines
373 B
YAML
name: 'Install OpenVINO'
|
|
description: 'Install OpenVINO binaries from a package repository; this is significantly faster than building from source'
|
|
|
|
inputs:
|
|
version:
|
|
description: 'The release version of OpenVINO to install'
|
|
required: false
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- run: ${{ github.action_path }}/install.sh ${{ inputs.version }}
|
|
shell: bash
|