Action directory name fix.

This commit is contained in:
Pete Johanson
2020-06-08 11:31:32 -04:00
parent 492ae24d60
commit d77df5a27a
2 changed files with 0 additions and 0 deletions

16
.github/actions/zephyr-west/action.yml vendored Normal file
View File

@@ -0,0 +1,16 @@
name: "Zephyr West"
description: 'Action incorporating Zephyr dependencies and West build tool'
inputs:
command: # id of input
description: 'Which west command to execute'
required: true
default: 'build'
command-args: # id of input
description: 'Extra arguments for the west command'
required: false
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.command }}
- ${{ inputs.command-args }}