You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unquote variables mistakenly quoted by PR awalsh128#177.
* The variable containing the list of packages was mistakenly double-quoted
in several places which caused the package lists to be treated as one long
single package name.
* The regex in get_install_script_filepath contained an errant pair of single
quotes which caused the test to always fail.
Copy file name to clipboardExpand all lines: action.yml
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,8 @@ inputs:
17
17
execute_install_scripts:
18
18
description: 'Execute Debian package pre and post install script upon restore. See README.md caveats for more information.'
19
19
required: false
20
-
default: 'false'
20
+
type: boolean
21
+
default: false
21
22
empty_packages_behavior:
22
23
description: >
23
24
Desired behavior when the provided package list is empty.
@@ -34,7 +35,8 @@ inputs:
34
35
debug:
35
36
description: 'Enable debugging when there are issues with action. Minor performance penalty.'
36
37
required: false
37
-
default: 'false'
38
+
type: boolean
39
+
default: false
38
40
add-repository:
39
41
description: 'Space delimited list of repositories to add via apt-add-repository before installing packages. Supports PPA (ppa:user/repo) and other repository formats.'
0 commit comments