Skip to content

Commit

Permalink
ci: fix build release error
Browse files Browse the repository at this point in the history
  • Loading branch information
LynnL4 committed Jan 12, 2025
1 parent 1a509ad commit 110b994
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,11 @@ jobs:
# Preparing files to upload
OUTPUT=${{ steps.build.outputs.output_dir }}
# Temporay remove boot_ota.zip
if [ -f $OUTPUT/boot_ota.zip ]; then
rm $OUTPUT/boot_ota.zip
fi
file_suffixes=("md5sum.txt" "emmc.zip" "ota.zip" "recovery.zip" "sd.zip" "emmc_sd_compat.zip" "swu.zip")
for suffix in "${file_suffixes[@]}"; do
file_path=$(find $OUTPUT/ -maxdepth 1 -name "*${suffix}")
Expand Down

0 comments on commit 110b994

Please sign in to comment.