Skip to content

Commit

Permalink
v9.10
Browse files Browse the repository at this point in the history
- CI | Armbian: Really fix Orange Pi 5 Max file renaming
  • Loading branch information
MichaIng committed Jan 24, 2025
1 parent f575756 commit 660775d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/armbian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,14 @@ jobs:
cd build/output/debs
for i in *
do
mv -v "$i" "${i%%_*}.deb"
if [ '${{ github.event.inputs.board }}' = 'orangepi5-max' ] && [ '${{ github.event.inputs.asset }}' = 'kernel' ]
then
mv -v "${i%%_*}.deb" "${i%.deb}_orangepi5max.deb"
mv -v "$i" "${i%%_*}_orangepi5max.deb"
i="${i%%_*}_orangepi5max.deb"
else
mv -v "$i" "${i%%_*}.deb"
i="${i%%_*}.deb"
fi
i="${i%%_*}.deb"
files="$files,$i"
urls="$urls,\"https://dietpi.com/downloads/binaries/testing/$i\""
done
Expand Down

0 comments on commit 660775d

Please sign in to comment.