Skip to content

Commit 655a68b

Browse files
committed
fix(outputs): fix outputs not displaying in logs
1 parent 524f96d commit 655a68b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

lib/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/util.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ export function parseBool(value: any) {
3838

3939
export function setOutput(name: Output, value: 'true' | 'false') {
4040
core.debug(`Setting output: ${name}=${value}`)
41+
outputs[name] = value
4142
return core.setOutput(name, value)
4243
}
4344
for (const key in outputs) setOutput(key as Output, outputs[key])

0 commit comments

Comments
 (0)