diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-06-08 22:27:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-08 22:27:27 -0400 |
commit | f0f466b9a1aa9b71a1cf712609322cd3d7598e53 (patch) | |
tree | 4c9db959bfb1ec047ac89f052788f8a7e8786171 /.github/workflows | |
parent | bab95eab79c8077e18daa1ef2e7ad9819cf94b25 (diff) | |
parent | d568df7bc98f9f386e0dbda2befcef711211927b (diff) |
Merge pull request #1 from zmkfirmware/ci/refactor-to-published-action
Move to published action for zephyr/west usage.
Diffstat (limited to '.github/workflows')
-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' |