We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 622ce31 commit 9abe67eCopy full SHA for 9abe67e
1 file changed
src/main.js
@@ -26,16 +26,16 @@ async function main() {
26
27
switch (encoding) {
28
case 'json':
29
- result = JSON.stringify(result)
+ output = JSON.stringify(result)
30
break
31
case 'string':
32
- result = String(result)
+ output = String(result)
33
34
default:
35
throw new Error('"result-encoding" must be either "string" or "json"')
36
}
37
38
- core.setOutput('result', result)
+ core.setOutput('result', output)
39
40
41
function handleError(err) {
0 commit comments