diff options
| author | Pete Johanson <peter@peterjohanson.com> | 2020-06-08 11:31:32 -0400 | 
|---|---|---|
| committer | Pete Johanson <peter@peterjohanson.com> | 2020-06-08 11:31:32 -0400 | 
| commit | d77df5a27ac837aee434709f610c4fff7e7c7f92 (patch) | |
| tree | a47e52ec1289f4b18dbc5bafb81165e7d1fce7ea /.github/actions/zephyr-west/action.yml | |
| parent | 492ae24d60ab2c294994acf79798a01d08eb0d00 (diff) | |
Action directory name fix.
Diffstat (limited to '.github/actions/zephyr-west/action.yml')
| -rw-r--r-- | .github/actions/zephyr-west/action.yml | 16 | 
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/actions/zephyr-west/action.yml b/.github/actions/zephyr-west/action.yml new file mode 100644 index 0000000..2498f74 --- /dev/null +++ b/.github/actions/zephyr-west/action.yml @@ -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 }}  | 
