Skip to content

Commit cb371c8

Browse files
authored
Update sultan.yml
1 parent 15ee575 commit cb371c8

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/sultan.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,14 @@ jobs:
210210
211211
echo "Copying Image.lz4 and concatenating DTB files..."
212212
cp ./out/arch/arm64/boot/Image.lz4 ../AnyKernel3/Image.lz4
213-
cat ./out/google-devices/${{ inputs.codename }}/dts/*.dtb > ../AnyKernel3/dtb
213+
if [ "${{ inputs.codename }}" == "gs201" ]; then
214+
cat ./out/google-devices/gs201/dts/*.dtb > ../AnyKernel3/dtb
215+
#cp ./out/google-devices/gs201/dts/dtbo.img ../AnyKernel3/dtbo.img
216+
elif [ "${{ inputs.codename }}" == "zuma" ]; then
217+
cat ./out/google-devices/zuma/dts/*.dtb > ../AnyKernel3/dtb
218+
elif [ "${{ inputs.codename }}" == "zumapro" ]; then
219+
cat ./out/google-devices/zumapro/dts/*.dtb > ../AnyKernel3/dtb
220+
fi
214221
215222
- name: Create ZIP Files for Different Formats
216223
run: |

0 commit comments

Comments
 (0)