Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions scripts/repack_rom.sh
Original file line number Diff line number Diff line change
Expand Up @@ -270,10 +270,11 @@ REPACK_ROM() {
done

# Check if we should create a full zip or just the unpacked images for debugging. For instance , fastboot or recovery flash.
if GET_FEAT_STATUS DEBUG_BUILD; then
# In CI environments, always create the ZIP for artifact upload
if GET_FEAT_STATUS DEBUG_BUILD && ! IS_GITHUB_ACTIONS; then
LOG_INFO "ROM debug build enabled. Repacked images are available at $DIROUT"
else
# For a release build, create the final flashable ZIP
# For a release build (or CI), create the final flashable ZIP
BUILD_SUPER_IMAGE
CREATE_FLASHABLE_ZIP
fi
Expand Down