From d77df5a27ac837aee434709f610c4fff7e7c7f92 Mon Sep 17 00:00:00 2001 From: Pete Johanson Date: Mon, 8 Jun 2020 11:31:32 -0400 Subject: Action directory name fix. --- .github/actions/zephyr-west/action.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/actions/zephyr-west/action.yml (limited to '.github/actions/zephyr-west/action.yml') 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 }} -- cgit v1.2.3