Files
wasmtime/.github/actions/install-openvino/action.yml
Pat Hickey fb68c80420 install-openvino: make it easier to invoke on your local machine
put the default version in the shell script, not the yml.
write any files to the directory where the action lives,
and .gitignore them.
2020-11-19 15:23:07 -08:00

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