You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
441 B
16 lines
441 B
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 }}
|
|
|