summaryrefslogtreecommitdiff
path: root/.github/actions/west/action.yml
blob: 2498f7415237fb8c271f4051e1a3ae61ac6c16db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 }}