We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b08774 commit f393000Copy full SHA for f393000
2 files changed
dist/index.js
@@ -2962,7 +2962,7 @@ async function run() {
2962
2963
core.setOutput('stdout', stdout.contents);
2964
core.setOutput('stderr', stderr.contents);
2965
- core.setOutput('exitcode', exitCode);
+ core.setOutput('exitcode', exitCode.toString(10));
2966
2967
if (exitCode !== 0) {
2968
core.setFailed(`Program exited with code ${exitCode}.`);
src/run-wrapper.js
@@ -41,7 +41,7 @@ async function run() {
41
42
43
44
45
46
47
0 commit comments