Skip to content

Commit b6e2182

Browse files
committed
Ensure west init uses the correct manifest revision in GHA
Signed-off-by: Chris Wilson <[email protected]>
1 parent 644720f commit b6e2182

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/build_zephyr.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ on:
2929
BOARD:
3030
required: true
3131
type: string
32-
ARTIFACT:
32+
ARTIFACT:
3333
required: true
3434
type: boolean
3535
TAG:
@@ -45,9 +45,13 @@ jobs:
4545
ZEPHYR_SDK_INSTALL_DIR: /opt/toolchains/zephyr-sdk-${{ inputs.ZEPHYR_SDK }}
4646

4747
steps:
48+
- name: Checkout
49+
uses: actions/checkout@v4
50+
with:
51+
path: app
4852
- name: Setup West workspace
4953
run: |
50-
west init -m https://github.com/$GITHUB_REPOSITORY .
54+
west init -l app
5155
west update --narrow -o=--depth=1
5256
west zephyr-export
5357
pip3 install -r deps/zephyr/scripts/requirements-base.txt

0 commit comments

Comments
 (0)