We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e49422e commit 5f2309eCopy full SHA for 5f2309e
.github/workflows/build_zephyr.yml
@@ -84,7 +84,11 @@ jobs:
84
mv app/zephyr/zephyr.elf ./artifacts/${{ github.event.repository.name }}_${{ inputs.TAG }}_${{ steps.nicename.outputs.BOARD_NICENAME }}.elf
85
86
if [[ "${{ inputs.BOARD }}" == "thingy91/nrf9160/ns" ]]; then
87
+ # Thingy91
88
mv app/zephyr/zephyr.signed.hex ./artifacts/${{ github.event.repository.name }}_${{ inputs.TAG }}_${{ steps.nicename.outputs.BOARD_NICENAME }}_mcuboot.hex
89
+ elif [[ "${{ inputs.BOARD }}" == "thingy91x/nrf9151/ns" ]]; then
90
+ # Thingy91x
91
+ mv dfu_application.zip ./artifacts/${{ github.event.repository.name }}_${{ inputs.TAG }}_${{ steps.nicename.outputs.BOARD_NICENAME }}_mcuboot.zip
92
fi
93
94
# Run IDs are unique per repo but are reused on re-runs
0 commit comments