Skip to content

Commit cc324b6

Browse files
Update build workflow to use correct paths for Zephyr project and firmware build
1 parent b4c04b1 commit cc324b6

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
- name: Checkout
2222
uses: actions/checkout@v4
2323
with:
24+
path: OpenAstroFocuser
2425
persist-credentials: false
2526

2627
- name: Set up Python
@@ -29,14 +30,14 @@ jobs:
2930
python-version: 3.12
3031

3132
- name: Setup Zephyr project
32-
uses: ./.github/actions/setup-zephyr
33+
uses: ./OpenAstroFocuser/.github/actions/setup-zephyr
3334
with:
34-
app-path: example-application
35+
app-path: OpenAstroFocuser
3536
toolchains: arm-zephyr-eabi,xtensa-espressif_esp32s3_zephyr-elf
3637
ccache-cache-key: ${{ matrix.os }}
3738

3839
- name: Build firmware
39-
working-directory: example-application
40+
working-directory: OpenAstroFocuser
4041
shell: bash
4142
run: |
4243
if [ "${{ runner.os }}" = "Windows" ]; then
@@ -45,7 +46,7 @@ jobs:
4546
west twister -T app -v --inline-logs --integration $EXTRA_TWISTER_FLAGS
4647
4748
- name: Twister Tests
48-
working-directory: example-application
49+
working-directory: OpenAstroFocuser
4950
shell: bash
5051
run: |
5152
if [ "${{ runner.os }}" = "Windows" ]; then

0 commit comments

Comments
 (0)