We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e169ae commit 904b439Copy full SHA for 904b439
dist/index.js
@@ -9192,7 +9192,8 @@ async function main() {
9192
default:
9193
throw new Error('"result-encoding" must be either "string" or "json"');
9194
}
9195
- // core.setOutput('result', output)
+ console.log('setting output', output);
9196
+ Object(core.setOutput)('result', output);
9197
9198
function handleError(err) {
9199
console.error(err);
src/main.ts
@@ -39,7 +39,9 @@ async function main() {
39
throw new Error('"result-encoding" must be either "string" or "json"')
40
41
42
+ console.log('setting output', output)
43
+
44
+ core.setOutput('result', output)
45
46
47
function handleError(err: any) {
0 commit comments