Update SkyHawk-SHRP.yml

This commit is contained in:
ragebreaker 2024-08-16 06:39:14 +05:30 committed by GitHub
parent 427e92f03e
commit c76054da37
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -36,12 +36,12 @@ on:
BUILD_TARGET:
description: 'Specify your Build Target' # Pick among boot, recovery and vendor_boot
required: true
default: 'recoveryimage'
default: 'recovery'
type: choice
options:
- bootimage
- recoveryimage
- vendorbootimage
- boot
- recovery
- vendorboot
LDCHECK:
description: 'Use LDCHECK'
required: false
@ -155,7 +155,7 @@ jobs:
cd android-recovery
source build/envsetup.sh
export ALLOW_MISSING_DEPENDENCIES=true
lunch ${{ env.DEVICE_MAKEFILE }}-eng && make clean && mka ${{ github.event.inputs.BUILD_TARGET }} -j$(nproc --all)
lunch ${{ env.DEVICE_MAKEFILE }}-eng && make clean && mka ${{ github.event.inputs.BUILD_TARGET }}image -j$(nproc --all)
echo "Done building your ${{ github.event.inputs.BUILD_TARGET }}.img"
- name: Check if the recovery exists