diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-06-08 21:53:48 -0400 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-06-08 21:53:48 -0400 |
commit | d568df7bc98f9f386e0dbda2befcef711211927b (patch) | |
tree | 4c9db959bfb1ec047ac89f052788f8a7e8786171 /.github/workflows/build.yml | |
parent | bab95eab79c8077e18daa1ef2e7ad9819cf94b25 (diff) |
Move to published action for zephyr/west usage.
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5fc8df1..4525aef 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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' |