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