diff options
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' |