Skip to content

Commit

Permalink
Upload elf files to gh release too (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
jesserockz authored Nov 25, 2024
1 parent a0399ca commit ba06598
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/upload-to-gh-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,15 @@ jobs:

- name: Copy files to output
run: |-
shopt -s nullglob
mkdir output
version="${{ inputs.version }}"
pushd files
for device in *; do
pushd $device
pushd $version
cp manifest.json ../../../output/$device.manifest.json
for bin in *.bin; do
for bin in *.{bin,elf}; do
md5sum $bin | head -c 32 > ../../../output/$bin.md5
cp $bin ../../../output/
done
Expand Down

0 comments on commit ba06598

Please sign in to comment.