Skip to content

Commit

Permalink
workflow: build: update artifact name to match past releases
Browse files Browse the repository at this point in the history
Use the same artifact naming scheme as was usen past releases.

Signed-off-by: Mike Szczys <[email protected]>
  • Loading branch information
szczys committed Jun 4, 2024
1 parent a8ac580 commit 7842fde
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_zephyr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ jobs:
run: |
cd build/zephyr
mkdir -p artifacts
mv merged.hex ./artifacts/golioth-${{ github.event.repository.name }}_${{ inputs.TAG }}_${{ inputs.BOARD }}_full.hex
mv app_update.bin ./artifacts/golioth-${{ github.event.repository.name }}_${{ inputs.TAG }}_${{ inputs.BOARD }}_update.bin
mv zephyr.elf ./artifacts/golioth-${{ github.event.repository.name }}_${{ inputs.TAG }}_${{ inputs.BOARD }}.elf
mv merged.hex ./artifacts/${{ github.event.repository.name }}_${{ inputs.TAG }}_${{ inputs.BOARD }}_full.hex
mv app_update.bin ./artifacts/${{ github.event.repository.name }}_${{ inputs.TAG }}_${{ inputs.BOARD }}_update.bin
mv zephyr.elf ./artifacts/${{ github.event.repository.name }}_${{ inputs.TAG }}_${{ inputs.BOARD }}.elf
# Run IDs are unique per repo but are reused on re-runs
- name: Save artifact
Expand Down

0 comments on commit 7842fde

Please sign in to comment.