Skip to content

Commit 1cff88e

Browse files
committed
workflows: debos: Add input to set overlays
Signed-off-by: Loïc Minier <[email protected]>
1 parent 8aa6aaf commit 1cff88e

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/debos.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ on:
77
description: Whether to use a mainline kernel deb
88
type: boolean
99
default: false
10+
overlays:
11+
description: List of overlays to use
12+
type: string
13+
default:
1014

1115
outputs:
1216
artifacts_url:
@@ -79,7 +83,11 @@ jobs:
7983
if [ -d debos-recipes/local-debs ]; then
8084
localdebs="-t localdebs:local-debs/"
8185
fi
82-
debos -t experimentalkernel:true -t xfcedesktop:true ${localdebs} \
86+
debos \
87+
-t overlays:'${{ inputs.overlays }}' \
88+
-t experimentalkernel:true \
89+
-t xfcedesktop:true \
90+
${localdebs} \
8391
debos-recipes/qualcomm-linux-debian-rootfs.yaml
8492
8593
- name: Build UFS and SD card images with debos

0 commit comments

Comments
 (0)