Skip to content

Commit 4e2afa2

Browse files
committed
ci: Escape kernel package name for APT
Signed-off-by: Loïc Minier <[email protected]>
1 parent 04aed4c commit 4e2afa2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/debos.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ on:
1414
kernelpackage:
1515
description: Name of kernel package to use
1616
type: string
17-
default: linux-image-6.16.1-qcom1+
17+
# plus sign is escaped as to prevent APT from interpreting this as a
18+
# package regexp; the package name actually has a plus sign
19+
# the second level of escaping seems to be required for debos;
20+
# this is probably a bug
21+
default: linux-image-6.16.1-qcom1\\+
1822

1923
outputs:
2024
artifacts_url:

0 commit comments

Comments
 (0)