Move to published action for zephyr/west usage.

This commit is contained in:
Pete Johanson
2020-06-08 21:53:48 -04:00
parent bab95eab79
commit d568df7bc9
4 changed files with 5 additions and 84 deletions

View File

@@ -25,29 +25,29 @@ jobs:
${{ runner.os }}-build-
${{ runner.os }}-
- name: West Init
uses: ./.github/actions/zephyr-west # Uses an action in the root directory
uses: zmkfirmware/zephyr-west-action@v0.1.0
id: west-init
with:
command: 'init'
command-args: '-l app'
- name: West Update
uses: ./.github/actions/zephyr-west # Uses an action in the root directory
uses: zmkfirmware/zephyr-west-action@v0.1.0
id: west-update
with:
command: 'update'
- name: West Config Zephyr Base
uses: ./.github/actions/zephyr-west # Uses an action in the root directory
uses: zmkfirmware/zephyr-west-action@v0.1.0
id: west-config
with:
command: 'config'
command-args: '--global zephyr.base-prefer configfile'
- name: West Zephyr Export
uses: ./.github/actions/zephyr-west # Uses an action in the root directory
uses: zmkfirmware/zephyr-west-action@v0.1.0
id: west-zephyr-export
with:
command: 'zephyr-export'
- name: West Build
uses: ./.github/actions/zephyr-west # Uses an action in the root directory
uses: zmkfirmware/zephyr-west-action@v0.1.0
id: west-build
with:
command: 'build'