Skip to content

Commit 3338d49

Browse files
committed
Fix action output strings by removing JSON.stringify
1 parent 2652079 commit 3338d49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/actions-core/src/action.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default class Action {
1313
.then((output) =>
1414
Object.entries(output).forEach(([key, value]) => {
1515
console.log(`${key}: ${JSON.stringify(value)}`);
16-
core.setOutput(key, JSON.stringify(value));
16+
core.setOutput(key, value);
1717
}),
1818
)
1919
.catch(this.handleError);

0 commit comments

Comments
 (0)