diff --git a/.github/workflows/blah.yml b/.github/workflows/blah.yml index 8c9c3e7..500055f 100644 --- a/.github/workflows/blah.yml +++ b/.github/workflows/blah.yml @@ -24,12 +24,12 @@ jobs: - name: Setup Zephyr project uses: zephyrproject-rtos/action-zephyr-setup@v1 with: - app-path: mellifera + app-path: firmware toolchains: arm-zephyr-eabi - name: Build run: | - west build -b nrf52dk/nrf52832 mellifera/app + west build -b nrf52dk/nrf52832 firmware/app - name: upload uses: actions/upload-artifact@v3 diff --git a/.west/config b/.west/config index 7ffa6ef..53cbfdf 100644 --- a/.west/config +++ b/.west/config @@ -1,5 +1,5 @@ [manifest] -path = mellifera +path = firmware file = west.yml [zephyr] diff --git a/mellifera/app/CMakeLists.txt b/firmware/app/CMakeLists.txt similarity index 100% rename from mellifera/app/CMakeLists.txt rename to firmware/app/CMakeLists.txt diff --git a/mellifera/app/prj.conf b/firmware/app/prj.conf similarity index 100% rename from mellifera/app/prj.conf rename to firmware/app/prj.conf diff --git a/mellifera/app/src/main.c b/firmware/app/src/main.c similarity index 100% rename from mellifera/app/src/main.c rename to firmware/app/src/main.c diff --git a/mellifera/west.yml b/firmware/west.yml similarity index 100% rename from mellifera/west.yml rename to firmware/west.yml