Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
jakkra committed Nov 4, 2023
1 parent aebbb7a commit f9ae422
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,15 @@ jobs:
- name: Build firmware
working-directory: ZSWatch
run: |
west build app -p -b ${{ matrix.board }} -- -DOVERLAY_CONFIG=boards/${{ matrix.built_type }}.conf
west build app -build-dir ${{ matrix.board }}_${{ matrix.built_type }} -p -b ${{ matrix.board }} -- -DOVERLAY_CONFIG=boards/${{ matrix.built_type }}.conf
ls
cd ${{ matrix.board }}_${{ matrix.built_type }}
ls
mv zephyr/zephyr.hex zephyr/${{ matrix.board }}_${{ matrix.built_type }}.hex
- name : Upload Firmware Files
- uses: actions/upload-artifact@v3
working-directory: ZSWatch
with:
name: ${{ matrix.board }}_${{ matrix.built_type }}
path: ${{ matrix.board }}_${{ matrix.built_type }}/zephyr/zephyr.hex

0 comments on commit f9ae422

Please sign in to comment.