Skip to content

Commit 37b79c2

Browse files
authored
Fix/forgot ref (#5)
* fix: value * fix: value --------- Co-authored-by: raoha.rh <[email protected]>
1 parent 8a60b8d commit 37b79c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/test/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ const mysqlVersion = core.getInput('mysql_version').split(',').map(x => x.trim()
66

77
core.setOutput('os', JSON.stringify(os));
88
core.setOutput('version', JSON.stringify(version));
9-
core.setOutput('mysql_version', JSON.stringify(mysqlVersion));
9+
core.setOutput('mysql_version', JSON.stringify(mysqlVersion === '' ? [] : mysqlVersion));
1010

1111
core.info(`os: ${os}, version: ${version}, mysql_version: ${mysqlVersion}`);

0 commit comments

Comments
 (0)